Skip to content

Commit

Permalink
Final mac autobuild setup
Browse files Browse the repository at this point in the history
This is not ideal. Artifacts zips it too, making a double zip. But we need to zip it ourselves or the symlinks get lost and the app breaks. But the app is broken anyway because it's unsigned and you need to run "xattr -cr RSDKv4.app" for it to not say that it's damaged so it can run.
  • Loading branch information
Sappharad committed May 1, 2023
1 parent e3f298d commit 45ad7cc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,12 @@ jobs:
- name: Build RSDKv4
run: |
xcodebuild -project RSDKv4.xcodeproj -scheme RSDKv4 DSTROOT="./build" archive
- name: Zip the app ourselves (Important step to retain symlinks)
run: |
cd ./build/Applications/
zip -r RSDKv4.zip ./RSDKv4.app/
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: v4-mac
path: build/Applications/
path: build/Applications/RSDKv4.zip

0 comments on commit 45ad7cc

Please sign in to comment.