Skip to content

Commit fe86f03

Browse files
authored
Distinguish each digest more
1 parent 40f974f commit fe86f03

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/docker.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818

1919
jobs:
2020
extract_meta:
21-
name: Get Release Version
21+
name: Extract metadata for use
2222
runs-on: ubuntu-latest
2323
outputs:
2424
clean_version: ${{ steps.get-version.outputs.clean_version }}
@@ -152,7 +152,7 @@ jobs:
152152
- name: Upload digest
153153
uses: actions/upload-artifact@v4
154154
with:
155-
name: digests-${{ matrix.os }}-${{ matrix.arch }}
155+
name: debian-${{ matrix.os }}-${{ matrix.arch }}
156156
path: /tmp/digests/*
157157
if-no-files-found: error
158158
retention-days: 1
@@ -219,7 +219,7 @@ jobs:
219219
- name: Upload digest
220220
uses: actions/upload-artifact@v4
221221
with:
222-
name: digests-alpine-${{ matrix.os }}-${{ matrix.arch }}
222+
name: alpine-${{ matrix.os }}-${{ matrix.arch }}
223223
path: /tmp/digests/*
224224
if-no-files-found: error
225225
retention-days: 1
@@ -286,7 +286,7 @@ jobs:
286286
- name: Upload digest
287287
uses: actions/upload-artifact@v4
288288
with:
289-
name: digests-${{ matrix.os }}-${{ matrix.arch }}
289+
name: debian-${{ matrix.os }}-${{ matrix.arch }}
290290
path: /tmp/digests/*
291291
if-no-files-found: error
292292
retention-days: 1
@@ -301,7 +301,7 @@ jobs:
301301
docker volume prune -a -f
302302
303303
docker-build-alpine-arm:
304-
name: Build Docker Image For ${{ matrix.os }} - ${{ matrix.arch }}
304+
name: Build Docker Alpine Image For ${{ matrix.os }} - ${{ matrix.arch }}
305305
needs: [extract_meta]
306306
runs-on: self-hosted
307307
strategy:
@@ -362,7 +362,7 @@ jobs:
362362
- name: Upload digest
363363
uses: actions/upload-artifact@v4
364364
with:
365-
name: digests-alpine-${{ matrix.os }}-${{ matrix.arch }}
365+
name: alpine-${{ matrix.os }}-${{ matrix.arch }}
366366
path: /tmp/digests/*
367367
if-no-files-found: error
368368
retention-days: 1
@@ -385,7 +385,7 @@ jobs:
385385
uses: actions/download-artifact@v4
386386
with:
387387
path: /tmp/digests
388-
pattern: digests-*
388+
pattern: debian-*
389389
merge-multiple: true
390390

391391
- name: Set up Docker Buildx
@@ -433,7 +433,7 @@ jobs:
433433
uses: actions/download-artifact@v4
434434
with:
435435
path: /tmp/digests
436-
pattern: digests-alpine-*
436+
pattern: alpine-*
437437
merge-multiple: true
438438

439439
- name: Set up Docker Buildx

0 commit comments

Comments
 (0)