mirror of
https://github.com/XcodesOrg/XcodesApp.git
synced 2026-03-25 08:55:46 +00:00
Fix scripts so app is appropriately zipped
It was nested inside Products before
This commit is contained in:
parent
29aa1e3b0e
commit
b2608d009a
2 changed files with 5 additions and 2 deletions
|
|
@ -54,7 +54,10 @@ git push --follow-tags
|
|||
scripts/package_release.sh
|
||||
|
||||
# Notarize the app
|
||||
scripts/notarize.sh "test@example.com" "@keychain:altool" MyOrg Product/Xcodes.zip
|
||||
# Do this from the Product directory so the app is zipped without being nested inside Product
|
||||
pushd Product
|
||||
../scripts/notarize.sh "test@example.com" "@keychain:altool" MyOrg Xcodes.zip
|
||||
popd
|
||||
|
||||
# Go to https://github.com/RobotsAndPencils/XcodesApp/releases
|
||||
# Edit the latest draft release
|
||||
|
|
|
|||
|
|
@ -66,4 +66,4 @@ app_path="$(basename -s ".zip" "$file").app"
|
|||
xcrun stapler staple "$app_path"
|
||||
|
||||
# Zip the stapled app for distribution
|
||||
zip -r "$file" "$app_path"
|
||||
ditto -c -k --sequesterRsrc --keepParent "$file" "$app_path"
|
||||
|
|
|
|||
Loading…
Reference in a new issue