ci: release process must preserve symlinks
The code signature on mac builds uses the symlink so we have to preserve itpull/160/head
parent
f9978e8524
commit
a74a38b9de
|
|
@ -105,7 +105,7 @@ jobs:
|
|||
/usr/libexec/PlistBuddy -c "Set :CFBundleVersion $build" "macos/build/Release/Ghostty.app/Contents/Info.plist"
|
||||
|
||||
- name: Zip Unsigned App
|
||||
run: nix develop -c sh -c 'cd macos/build/Release && zip -9 -r ../../../ghostty-macos-universal-unsigned.zip Ghostty.app'
|
||||
run: nix develop -c sh -c 'cd macos/build/Release && zip -9 -r --symlinks ../../../ghostty-macos-universal-unsigned.zip Ghostty.app'
|
||||
|
||||
# Update Release
|
||||
- name: Release Unsigned
|
||||
|
|
@ -170,7 +170,7 @@ jobs:
|
|||
|
||||
# Zip up the app
|
||||
- name: Zip App
|
||||
run: cd macos/build/Release && zip -9 -r ../../../ghostty-macos-universal.zip Ghostty.app
|
||||
run: cd macos/build/Release && zip -9 -r --symlinks ../../../ghostty-macos-universal.zip Ghostty.app
|
||||
|
||||
# Update Release
|
||||
- name: Release
|
||||
|
|
|
|||
Loading…
Reference in New Issue