Skip to content

Commit be7320b

Browse files
authored
Merge pull request #40 from boriel-basic/feat/add_arm64_binaries
2 parents 0caf69d + 4b9c9e6 commit be7320b

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/build.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ jobs:
3838
3939
- name: Publish for Mac
4040
run: |
41-
dotnet publish ZXBStudio/ZXBasicStudio.csproj -c Release -r osx-x64 --self-contained true -p:PublishSingleFile=true -o out-mac
41+
dotnet publish ZXBStudio/ZXBasicStudio.csproj -c Release -r osx-x64 --self-contained true -p:PublishSingleFile=true -o out-mac-x64
42+
dotnet publish ZXBStudio/ZXBasicStudio.csproj -c Release -r osx-arm64 --self-contained true -p:PublishSingleFile=true -o out-mac-arm64
4243
4344
- uses: actions/upload-artifact@v4
4445
with:
@@ -53,5 +54,10 @@ jobs:
5354
- uses: actions/upload-artifact@v4
5455
with:
5556
name: ZXBasicStudio-osx-x64
56-
path: ~/work/ZXBasicStudio/ZXBasicStudio/out-mac/
57+
path: ~/work/ZXBasicStudio/ZXBasicStudio/out-mac-x64/
58+
59+
- uses: actions/upload-artifact@v4
60+
with:
61+
name: ZXBasicStudio-osx-arm64
62+
path: ~/work/ZXBasicStudio/ZXBasicStudio/out-mac-arm64/
5763

0 commit comments

Comments
 (0)