Skip to content

Commit a19e4d4

Browse files
committed
Fix breakage.
1 parent 30455e0 commit a19e4d4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
- name: Run tests
1414
run: ./gradlew clean test --info
1515
- name: Set github tag
16-
id: vars
16+
id: github
1717
run: echo ::set-output name=tag::${GITHUB_REF#refs/*/}
1818
- name: Set short git hash
19-
id: vars
19+
id: git
2020
run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)"
2121
- name: Build artifacts
22-
run: ./gradlew -Penv=production -Prelease=${{ steps.vars.outputs.tag }} -Phash=${{ steps.vars.outputs.sha_short }} clean assemble
22+
run: ./gradlew -Penv=production -Prelease=${{ steps.github.outputs.tag }} -Phash=${{ steps.git.outputs.sha_short }} clean assemble
2323
- uses: ncipollo/release-action@v1
2424
with:
2525
artifacts: "build/distributions/sdkman-cli-*.zip"

0 commit comments

Comments
 (0)