We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b4a636 commit f5bd635Copy full SHA for f5bd635
1 file changed
.github/workflows/release.yml
@@ -65,10 +65,12 @@ jobs:
65
# This step will fail if the Solver binaries aren't already on Maven Central.
66
- name: Create release branch and build release
67
working-directory: ./timefold-quickstarts
68
+ env:
69
+ JAVA_VERSION: ${{ github.event.inputs.javaVersion }}
70
run: |
71
mvn verify
- git commit -am "build: switch to version ${{ github.event.inputs.javaVersion }}"
- git tag -a "v${{ github.event.inputs.javaVersion }}" -m "Release version ${{ github.event.inputs.javaVersion }}"
72
+ git commit -am "build: switch to version $JAVA_VERSION"
73
+ git tag -a "v$JAVA_VERSION" -m "Release version $JAVA_VERSION"
74
git push --tags
75
76
# Merge the release branch into the stable branch.
0 commit comments