mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 18:18:55 +00:00
fix(ci): Add merge_multiple to fix artifact naming. (#3100)
https://github.com/firezone/firezone/actions/runs/7397984675
This commit is contained in:
9
.github/workflows/cd.yml
vendored
9
.github/workflows/cd.yml
vendored
@@ -228,8 +228,8 @@ jobs:
|
||||
- name: Upload digest
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: ${{ env.BINARY_DEST_PATH }}-digest
|
||||
path: /tmp/digests/*
|
||||
name: ${{ env.BINARY_DEST_PATH }}-digests
|
||||
path: /tmp/digests/${{ matrix.name.image_name }}
|
||||
if-no-files-found: error
|
||||
retention-days: 1
|
||||
|
||||
@@ -306,8 +306,11 @@ jobs:
|
||||
- name: Download digests
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
pattern: '*-digest'
|
||||
pattern: "*-digests"
|
||||
merge-multiple: true
|
||||
path: /tmp/digests
|
||||
- name: Display structure of downloaded artifacts
|
||||
run: ls -R /tmp/digests
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
- name: Build Version Tags
|
||||
|
||||
Reference in New Issue
Block a user