Skip to content

Commit

Permalink
Merge pull request #357 from crazy-max/update-artifact-actions
Browse files Browse the repository at this point in the history
bump actions/upload-artifact and actions/download-artifact to 4
  • Loading branch information
crazy-max authored Mar 24, 2024
2 parents 74bd0a1 + 4c08be4 commit 6d2d368
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,9 @@ jobs:
tree -nh ${{ env.DESTDIR }}
-
name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ftpgrab
name: ftpgrab-${{ env.PLATFORM_PAIR }}
path: ${{ env.DESTDIR }}
if-no-files-found: error

Expand All @@ -153,10 +153,15 @@ jobs:
uses: actions/checkout@v4
-
name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ftpgrab
path: ${{ env.DESTDIR }}
pattern: ftpgrab-*
merge-multiple: true
-
name: List artifacts
run: |
tree -nh ${{ env.DESTDIR }}
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down

0 comments on commit 6d2d368

Please sign in to comment.