We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3b10dfa + 8d46911 commit 263e4caCopy full SHA for 263e4ca
.github/workflows/docker-build.yml
@@ -66,10 +66,15 @@ jobs:
66
digest="${{ steps.build.outputs.digest }}"
67
touch "/tmp/digests/${digest#sha256:}"
68
69
+ - name: Prepare platform pair
70
+ run: |
71
+ platform=${{ matrix.platform }}
72
+ echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
73
+
74
- name: Upload digest
75
uses: actions/upload-artifact@v4
76
with:
- name: digests-${{ matrix.platform }}
77
+ name: digests-${{ env.PLATFORM_PAIR }}
78
path: /tmp/digests/*
79
if-no-files-found: error
80
retention-days: 1
0 commit comments