Skip to content

Commit 1cfbf5e

Browse files
tstellarllvmbot
authored andcommitted
workflows/release-binaries: Give attestation artifacts a unique name (#102041)
We need a different attestation for each supported architecture, so there artifacts all need to have a different name. The upload step is run on a Linux runner, so no matter which architecture's binary is being uploaded the runner.os and runner.arch variables would always be 'Linux' and 'X64' and so we can't use them for naming the artifact. (cherry picked from commit 3c8dadd)
1 parent d033ae1 commit 1cfbf5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release-binaries.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ jobs:
442442
- name: Upload Build Provenance
443443
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 #v4.3.3
444444
with:
445-
name: ${{ runner.os }}-${{ runner.arch }}-release-binary-attestation
445+
name: ${{ needs.prepare.outputs.release-binary-filename }}-attestation
446446
path: ${{ needs.prepare.outputs.release-binary-filename }}.jsonl
447447

448448
- name: Upload Release

0 commit comments

Comments
 (0)