We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0453d1 commit b6a7af8Copy full SHA for b6a7af8
.github/workflows/container-build.yml
@@ -150,7 +150,12 @@ jobs:
150
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
151
with:
152
pattern: digests-${{ matrix.image }}-*
153
- path: /tmp/digests-${{ matrix.image }}
+ path: /tmp/digests-download
154
+
155
+ - name: Prepare digests
156
+ run: |
157
+ mkdir -p /tmp/digests-${{ matrix.image }}
158
+ find /tmp/digests-download -type f -name "*" -not -path "*/\.*" -exec cp {} /tmp/digests-${{ matrix.image }}/ \;
159
- name: Set up Docker Buildx
160
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
161
- name: Docker meta
0 commit comments