Skip to content

Commit

Permalink
fix artifacts (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsaridas authored Feb 12, 2025
1 parent 160ab87 commit 8f7e50b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ghcr-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
- name: Upload image
uses: actions/upload-artifact@v4
with:
name: images
name: images-${{ strategy.job-index }}
path: /tmp/images/${{ env.TARFILE }}
if-no-files-found: error
retention-days: 1
Expand All @@ -127,9 +127,10 @@ jobs:
- 5000:5000
steps:
- name: Download images
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: images
name: images-*
merge-multiple: true
path: /tmp/images
- name: Load images
run: |
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/publish-hub-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ jobs:
- name: Upload image
uses: actions/upload-artifact@v4
with:
name: images
name: images-${{ strategy.job-index }}
path: /tmp/images/${{ env.TARFILE }}
if-no-files-found: error
retention-days: 1
Expand All @@ -171,9 +171,10 @@ jobs:
- 5000:5000
steps:
- name: Download images
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: images
name: images-*
merge-multiple: true
path: /tmp/images

- name: Load images
Expand Down

0 comments on commit 8f7e50b

Please sign in to comment.