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 bd259c1 commit 630fc51Copy full SHA for 630fc51
.github/workflows/build-sdk.yml
@@ -60,4 +60,5 @@ jobs:
60
- name: Compute SHA256 of the uploaded artifact (universal)
61
id : universal-digest
62
run : |
63
- echo "digest=$(sha256sum ./dist/target/scala3-${{env.THISBUILD_VERSION}}.zip | cut -d " " -f 1)" >> "$GITHUB_OUTPUT"
+ curl -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -o artifact.zip -L https://api.github.com/repos/scala/scala3/actions/artifacts/${{ steps.universal.outputs.artifact-id }}/zip
64
+ echo "digest=$(sha256sum artifact.zip | cut -d " " -f 1)" >> "$GITHUB_OUTPUT"
0 commit comments