Skip to content

Commit

Permalink
Merge pull request #12 from jplexer/master
Browse files Browse the repository at this point in the history
Fix workflow for Windows
  • Loading branch information
vicr123 authored Jan 16, 2024
2 parents f0dac7c + 8eb550a commit 1bc44fc
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions .github/workflows/win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,14 +117,26 @@ jobs:
if: github.event_name == 'release'
steps:
- uses: actions/download-artifact@v3
name: "Download Artifact"
id: download
name: "Download x64 Artifact"
id: download_x64
with:
name: "thebeat-win"
path: "thebeat-win"
name: "thebeat-win-x64"
path: "thebeat-win-x64"

- uses: actions/download-artifact@v3
name: "Download arm64 Artifact"
id: download_arm64
with:
name: "thebeat-win-arm64"
path: "thebeat-win-arm64"

- run: |
zip -r thebeat-win.zip thebeat-win
zip -r thebeat-win-x64.zip thebeat-win-x64
zip -r thebeat-win-arm64.zip thebeat-win-arm64
- name: "Upload to Release"
uses: softprops/action-gh-release@v1
with:
files: thebeat-win.zip
files: |
thebeat-win-x64.zip
thebeat-win-arm64.zip

0 comments on commit 1bc44fc

Please sign in to comment.