Skip to content

Commit

Permalink
fix release action
Browse files Browse the repository at this point in the history
  • Loading branch information
richardlehane committed Jun 21, 2024
1 parent d0da063 commit f5554f5
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: release-artifacts
name: release-artifacts-ubuntu
path: |
${{ env.SF_PATH }}.deb
siegfried_${{ env.VERS }}_linux64.zip
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: release-artifacts
name: release-artifacts-mac
path: |
siegfried_${{ env.VERSION }}_mac64.zip
siegfried_${{ env.VERSION }}_mac64_static.zip
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: release-artifacts
name: release-artifacts-win
path: |
siegfried_${{ env.VERSION }}_win64.zip
siegfried_${{ env.VERSION }}_win64_static.zip
Expand All @@ -127,7 +127,7 @@ jobs:
- name: Install latest version of go
uses: actions/setup-go@v5
with:
go-version: 1.20
go-version: '1.20'
- name: Make sf and roy binaries
run: |
go install github.com/richardlehane/siegfried/cmd/sf
Expand All @@ -139,7 +139,7 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: release-artifacts
name: release-artifacts-win7
path: |
siegfried_${{ env.VERSION }}_win7.zip
buildWasm:
Expand All @@ -162,7 +162,7 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: release-artifacts
name: release-artifacts-wasm
path: |
siegfried_${{ env.VERSION }}_wasm.zip
createRelease:
Expand All @@ -173,8 +173,9 @@ jobs:
run: echo "VERSION=$(echo "${{ github.ref }}" | cut -c12-)" >> $GITHUB_ENV
- uses: actions/download-artifact@v4
with:
name: release-artifacts
path: release-artifacts
pattern: release-artifacts-*
merge-multiple: true
- name: Create release
uses: softprops/action-gh-release@v2
with:
Expand Down

0 comments on commit f5554f5

Please sign in to comment.