Skip to content

Commit 6876f69

Browse files
authored
fix: fixing missing macos sha256sum command + provenance file name errors (#239)
1 parent 7025397 commit 6876f69

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.github/actions/sdk-release/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ runs:
185185
shell: bash
186186
id: hash-macos
187187
run: |
188-
echo "hashes-macos=$(sha256sum mac-clang-x64-static.zip mac-clang-x64-dynamic.zip | base64 -b 0)" >> "$GITHUB_OUTPUT"
188+
echo "hashes-macos=$(shasum -a 256 mac-clang-x64-static.zip mac-clang-x64-dynamic.zip | base64 -b 0)" >> "$GITHUB_OUTPUT"
189189
190190
- name: Upload Mac Build Artifacts
191191
if: runner.os == 'macOS'

.github/workflows/manual-sdk-release-artifacts.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,3 +69,4 @@ jobs:
6969
base64-subjects: "${{ needs.release-sdk.outputs[format('hashes-{0}', matrix.os)] }}"
7070
upload-assets: true
7171
upload-tag-name: ${{ inputs.tag }}
72+
provenance-name: ${{ format('{0}-multiple.intoto.jsonl', matrix.os) }}

.github/workflows/release-please.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,3 +57,4 @@ jobs:
5757
base64-subjects: "${{ needs.release-client.outputs[format('hashes-{0}', matrix.os)] }}"
5858
upload-assets: true
5959
upload-tag-name: ${{ needs.release-please.outputs.package-client-tag }}
60+
provenance-name: ${{ format('{0}-multiple.intoto.jsonl', matrix.os) }}

0 commit comments

Comments
 (0)