Skip to content

Commit

Permalink
Merge pull request #16 from notimaginative/fix_big_lib_build_workflow
Browse files Browse the repository at this point in the history
fix workflow files missing Windows ARM64 libs
  • Loading branch information
Goober5000 authored Jul 9, 2024
2 parents 8603996 + 7c85107 commit 21d0b52
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ on:
- 'mac/*'
- 'win32/*'
- 'win64/*'
- 'winarm64/*'

workflow_dispatch:
# Triggered manually from Github
Expand Down Expand Up @@ -46,4 +47,5 @@ jobs:
linux_arm64/bin-linux_arm64.tar.gz
mac/bin-mac.tar.gz
win32/bin-win32.zip
win64/bin-win64.zip
win64/bin-win64.zip
winarm64/bin-winarm64.zip
1 change: 1 addition & 0 deletions ci/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ git push deploy --tags

(cd win32 && 7z a -r bin-win32.zip *)
(cd win64 && 7z a -r bin-win64.zip *)
(cd winarm64 && 7z a -r bin-winarm64.zip *)

0 comments on commit 21d0b52

Please sign in to comment.