Skip to content

Commit

Permalink
update workflow [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
bischoffz committed Jun 14, 2024
1 parent 6102aba commit ebedd6d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ jobs:
- name: Increment GCM Version
run: |
gcm_version=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout --file pom.xml)
echo GCM Version: $gcm_version
parts=( ${gcm_version//./ } )
current_version=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout --file pom.xml)
echo GCM Version: $current_version
parts=( ${current_version//./ } )
bv=$((parts[2] + 1))
new_version="${parts[0]}.${parts[1]}.${bv}"
echo New GCM Version: $new_version
Expand Down Expand Up @@ -128,9 +128,9 @@ jobs:
- name: Increment Taskit Version
run: |
taskit_version=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout --file pom.xml)
echo Taskit Version: $taskit_version
parts=( ${taskit_version//./ } )
current_version=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout --file pom.xml)
echo Taskit Version: $current_version
parts=( ${current_version//./ } )
bv=$((parts[2] + 1))
new_version="${parts[0]}.${parts[1]}.${bv}"
echo New Taskit Version: $new_version
Expand Down

0 comments on commit ebedd6d

Please sign in to comment.