Skip to content

Commit

Permalink
git pull
Browse files Browse the repository at this point in the history
  • Loading branch information
ztarbug committed Mar 19, 2024
1 parent 9d59e4f commit bf13f37
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 22 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/createRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,20 +43,20 @@ jobs:
- name: Echo CHANGELOG.md
run: echo '${{ steps.package.outputs.content }}'

- name: publish tag
id: publish_tag
run: |
git push --follow-tags
echo ::set-output name=tag_name::$(git describe HEAD --abbrev=0)
- name: create release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
release_name: Release ${{ steps.publish_tag.outputs.tag_name }}
tag_name: ${{ steps.publish_tag.outputs.tag_name }}
body_path: CHANGELOG.md
# - name: publish tag
# id: publish_tag
# run: |
# git push --follow-tags
# echo ::set-output name=tag_name::$(git describe HEAD --abbrev=0)

# - name: create release
# uses: actions/create-release@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# release_name: Release ${{ steps.publish_tag.outputs.tag_name }}
# tag_name: ${{ steps.publish_tag.outputs.tag_name }}
# body_path: CHANGELOG.md

- name: Set up JDK 17
uses: actions/setup-java@v2
Expand Down
2 changes: 1 addition & 1 deletion application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>de.starwit</groupId>
<artifactId>databackend</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.5.0</version>
</parent>

<artifactId>application</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions deployment/helm/databackend/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ description: A Helm chart to deploy DataBackend to Kubernetes
type: application

# This is the chart version.
version: 0.3.1
version: 0.5.0

# Docker image version number
appVersion: 0.3.1
appVersion: 0.5.0

dependencies:
- name: postgresql
Expand Down
2 changes: 1 addition & 1 deletion persistence/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>de.starwit</groupId>
<artifactId>databackend</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.5.0</version>
</parent>

<artifactId>persistence</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>de.starwit</groupId>
<artifactId>databackend</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.5.0</version>
<description>Runs analytics jobs on SAE outputs and persists results for visualization.</description>
<packaging>pom</packaging>

Expand Down
2 changes: 1 addition & 1 deletion rest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.starwit</groupId>
<artifactId>databackend</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.5.0</version>
</parent>

<artifactId>rest</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion saetester/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>de.starwit</groupId>
<artifactId>databackend</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.5.0</version>
</parent>

<artifactId>saetester</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>de.starwit</groupId>
<artifactId>databackend</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.5.0</version>
</parent>

<artifactId>service</artifactId>
Expand Down

0 comments on commit bf13f37

Please sign in to comment.