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 2b5206e commit b56fb2eCopy full SHA for b56fb2e
.github/workflows/release.yml
@@ -47,9 +47,7 @@ jobs:
47
# currentVersion command gets this value, which we store in the "version" variable for following jobs.
48
- name: Get current version
49
id: version
50
- run: echo "::set-output name=version::$(./gradlew -q -Prelease.quiet currentVersion)"
51
-
52
- # TODO: Create Github release
+ run: echo "version=$(./gradlew -q -Prelease.quiet currentVersion)" >> "$VERSION"
53
54
maven:
55
runs-on: ubuntu-22.04
@@ -60,7 +58,7 @@ jobs:
60
58
uses: actions/checkout@v3
61
59
with:
62
fetch-depth: 0
63
- ref: refs/tags/${{ needs.github.outputs.version }}
+ ref: refs/tags/${{ needs.github.outputs.VERSION }}
64
65
- name: Set up JDK 17
66
uses: actions/setup-java@v3
0 commit comments