Skip to content

Commit

Permalink
fix: update download artifact 2
Browse files Browse the repository at this point in the history
  • Loading branch information
banditopazzo committed Feb 12, 2025
1 parent 5694c1f commit debb4f2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ jobs:
if: ${{ matrix.platform.docker != null }}
uses: actions/upload-artifact@v4
with:
name: images-${{ env.REGISTRY_TAG }}-${{ matrix.platform.target }}
name: image-${{ env.REGISTRY_TAG }}-${{ matrix.platform.target }}
path: /tmp/images/${{ env.TARFILE }}
if-no-files-found: error
retention-days: 1
Expand All @@ -145,7 +145,7 @@ jobs:
- name: Upload binary
uses: actions/upload-artifact@v4
with:
name: binaries-${{ env.REGISTRY_TAG }}-${{ matrix.platform.target }}
name: binary-${{ env.REGISTRY_TAG }}-${{ matrix.platform.target }}
path: ${{ steps.rename_binary.outputs.binary_name }}
if-no-files-found: error
retention-days: 1
Expand All @@ -162,14 +162,14 @@ jobs:
uses: actions/download-artifact@v4
with:
# This matches all binary artifacts from every matrix job
name: "binaries-${{ env.REGISTRY_TAG }}-*"
pattern: "binary-${{ env.REGISTRY_TAG }}-*"
path: /tmp/binaries

- name: Download vendored archive
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
# Single vendored artifact name
name: "vendored-archive-${{ env.REGISTRY_TAG }}"
pattern: "vendored-archive-${{ env.REGISTRY_TAG }}"
path: /tmp/vendored

- name: Code checkout
Expand Down Expand Up @@ -231,7 +231,7 @@ jobs:
- name: Download images
uses: actions/download-artifact@v4
with:
name: "images-${{ env.REGISTRY_TAG }}-*"
pattern: "image-${{ env.REGISTRY_TAG }}-*"
path: /tmp/images

- name: Load images
Expand Down

0 comments on commit debb4f2

Please sign in to comment.