We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40ae73f commit cfe059dCopy full SHA for cfe059d
.github/workflows/release-docker-image.yml
@@ -82,7 +82,7 @@ jobs:
82
- name: Upload digest
83
uses: actions/upload-artifact@v4
84
with:
85
- name: ${{ env.DIGEST_NAME }}
+ name: ${{ env.DIGEST_NAME }}-${{ matrix.platform }}
86
path: ${{ env.DIGEST_DIR_PATH }}/*
87
if-no-files-found: error
88
retention-days: 1
@@ -93,10 +93,11 @@ jobs:
93
runs-on: ubuntu-24.04
94
steps:
95
- name: Download digests
96
- uses: actions/download-artifact@v3
+ uses: actions/download-artifact@v4
97
98
+ pattern: ${{ env.DIGEST_NAME }}*
99
path: ${{ env.DIGEST_DIR_PATH }}
100
+ merge-multiple: true
101
102
- name: Set up Docker Buildx
103
uses: docker/setup-buildx-action@v3
0 commit comments