Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix update download artifact 2 #332

Merged
merged 1 commit into from
Feb 12, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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