Skip to content

Commit

Permalink
ci: automate approval process
Browse files Browse the repository at this point in the history
  • Loading branch information
Yalz committed Sep 18, 2023
1 parent ea64607 commit 2408d93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/3.approve-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
echo "current version: $VERSION"
if [[ $VERSION == *"-SNAPSHOT" ]]; then
echo "Dealing with a snapshot version. Current version: $VERSION"
export NEWVERSION = $(echo ${VERSION/"-SNAPSHOT"/""})
export NEWVERSION=$(echo ${VERSION/"-SNAPSHOT"/""})
echo "New version: ${NEWVERSION}"
mvn -B versions:set -DnewVersion=${NEWVERSION} -DgenerateBackupPoms=false
else
Expand Down

0 comments on commit 2408d93

Please sign in to comment.