Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add workflow to build package for windows-arm64 #1369

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/build-nekoray-cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
cross_os: [windows, linux]
cross_arch: [amd64]
cross_arch: [amd64, arm64]
include:
- cross_os: public_res
cross_arch: public_res
Expand Down Expand Up @@ -177,7 +177,11 @@ jobs:
####
mv windows64 nekoray
zip -r $version_standalone-windows64.zip nekoray
####
mv -f windows-arm64/*.exe nekoray/
zip -r $version_standalone-windows-arm64.zip nekoray
rm -rf nekoray
rm -rf windows-arm64
- name: Pack Debian
run: |
source libs/env_deploy.sh
Expand All @@ -202,6 +206,7 @@ jobs:
cd deployment
rm -rf linux64
rm -rf windows64
rm -rf windows-arm64
rm -rf public_res
rm -rf *.pdb
- name: Uploading Artifact
Expand Down