Skip to content

Commit

Permalink
ci(build-image): 🧪 drop download/upload artifact version
Browse files Browse the repository at this point in the history
v4 upload-artifact no longer allows multiple artifacts with the same name
  • Loading branch information
MrDynamo committed May 21, 2024
1 parent c6b8573 commit 0b711e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/master-beta-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
# Upload the digest as an artifact
- name: Upload digest
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: digests_ghcr
path: /tmp/digests/*
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
# Download the digests from the artifacts
- name: Download digests
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: digests_ghcr
path: /tmp/digests
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
# Upload the digest to the artifacts
- name: Upload digest
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: digests_ghcr
path: /tmp/digests/*
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
# Download the digests from the artifacts
- name: Download digests
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: digests_ghcr
path: /tmp/digests
Expand Down

0 comments on commit 0b711e1

Please sign in to comment.