Commit b265bb8 1 parent 40ae73f commit b265bb8 Copy full SHA for b265bb8
File tree 1 file changed +10
-3
lines changed
1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -79,10 +79,16 @@ jobs:
79
79
touch "${{ env.DIGEST_DIR_PATH }}/${digest#sha256:}"
80
80
ls -lah ${{ env.DIGEST_DIR_PATH }}
81
81
82
+ - name : Format DIGEST_PLATFORM
83
+ run : |
84
+ PLATFORM="${{ matrix.platform }}"
85
+ # replace slash (/) with dash (-)
86
+ echo "DIGEST_PLATFORM=${PLATFORM//\//-}" >> $GITHUB_ENV
87
+
82
88
- name : Upload digest
83
89
uses : actions/upload-artifact@v4
84
90
with :
85
- name : ${{ env.DIGEST_NAME }}
91
+ name : ${{ env.DIGEST_NAME }}-${{ env.DIGEST_PLATFORM }}
86
92
path : ${{ env.DIGEST_DIR_PATH }}/*
87
93
if-no-files-found : error
88
94
retention-days : 1
@@ -93,10 +99,11 @@ jobs:
93
99
runs-on : ubuntu-24.04
94
100
steps :
95
101
- name : Download digests
96
- uses : actions/download-artifact@v3
102
+ uses : actions/download-artifact@v4
97
103
with :
98
- name : ${{ env.DIGEST_NAME }}
104
+ pattern : ${{ env.DIGEST_NAME }}*
99
105
path : ${{ env.DIGEST_DIR_PATH }}
106
+ merge-multiple : true
100
107
101
108
- name : Set up Docker Buildx
102
109
uses : docker/setup-buildx-action@v3
You can’t perform that action at this time.
0 commit comments