Skip to content

Commit

Permalink
GitHub action: update the actions/upload-artifact@v2 to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
dsmello authored Sep 25, 2024
1 parent 3350381 commit d01975f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ jobs:

# Store artifacts for further jobs
- name: Store artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.id }}
path: |
Expand Down Expand Up @@ -313,7 +313,7 @@ jobs:
set: ${{ steps.sha512.outputs.value }}

- name: Store signed artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: windows-signed
path: ./signed/*
Expand Down Expand Up @@ -367,14 +367,14 @@ jobs:
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}

- name: Store x64 signature
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: linux
path: ./release/linux/${{ steps.filename.outputs.x64 }}.sig
if-no-files-found: error

- name: Store arm64 signature
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: linux-arm64
path: ./release/linux-arm64/${{ steps.filename.outputs.arm64 }}.sig
Expand Down

0 comments on commit d01975f

Please sign in to comment.