Skip to content

Commit

Permalink
Merge pull request #1808 from spacemeshos/fix-release-artifact
Browse files Browse the repository at this point in the history
Update GitHub Actions release workflow to rename artifact storage for signatures to include 'signed' suffix for clarity and prevente the name colision
  • Loading branch information
dsmello authored Jan 23, 2025
2 parents 49b35d4 + cd7ea99 commit a9943aa
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -369,14 +369,14 @@ jobs:
- name: Store x64 signature
uses: actions/upload-artifact@v4
with:
name: linux
name: linux-signed
path: ./release/linux/${{ steps.filename.outputs.x64 }}.sig
if-no-files-found: error

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

Expand Down Expand Up @@ -477,5 +477,7 @@ jobs:
windows
linux
linux-arm64
linux-signed
linux-arm64-signed
macos
macos-arm64

0 comments on commit a9943aa

Please sign in to comment.