We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f43eb6b commit a445167Copy full SHA for a445167
.github/workflows/cross.yaml
@@ -59,11 +59,17 @@ jobs:
59
if: github.event_name != 'pull_request'
60
run: |
61
./${{matrix.COSIGN_TARGET}} verify-blob --key ./.github/workflows/cosign-test.pub --signature ${{matrix.COSIGN_TARGET}}.sig ./${{matrix.COSIGN_TARGET}}
62
+ - name: artifacts file name
63
+ shell: bash
64
+ if: github.event_name != 'pull_request'
65
+ run: |
66
+ name=$(echo ${{ matrix.os }} | cut -d '-' f1)
67
+ echo "artifactsfilename=$name" >> $GITHUB_ENV
68
- name: Upload artifacts
69
70
uses: actions/upload-artifact@694cdabd8bdb0f10b2cea11669e1bf5453eed0a6 # v4.2.0
71
with:
- name: artifacts
72
+ name: artifacts-${{ env.artifactsfilename }}
73
path: |
74
cosign-*
75
cosign.-*sha256
0 commit comments