mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-20 13:23:34 -07:00
CI: Condense codesign command to a single line
Co-authored-by: Chocobo1 <Chocobo1@users.noreply.github.com>
This commit is contained in:
parent
f0b55e47a6
commit
6b5b4d5152
1 changed files with 4 additions and 3 deletions
7
.github/workflows/ci_macos.yaml
vendored
7
.github/workflows/ci_macos.yaml
vendored
|
@ -134,9 +134,10 @@ jobs:
|
||||||
macdeployqt "$appName.app" -no-strip
|
macdeployqt "$appName.app" -no-strip
|
||||||
# sign
|
# sign
|
||||||
xattr -cr "$appName.app"
|
xattr -cr "$appName.app"
|
||||||
codesign --force --sign - --options runtime $appName.app/Contents/Frameworks/*
|
codesign --force --sign - --options runtime \
|
||||||
codesign --force --sign - --options runtime "$appName.app/Contents/MacOS/$appName"
|
"$appName.app/Contents/Frameworks"/* \
|
||||||
codesign --force --sign - --options runtime "$appName.app"
|
"$appName.app/Contents/MacOS/$appName" \
|
||||||
|
"$appName.app"
|
||||||
codesign --verify --deep --strict -v "$appName.app"
|
codesign --verify --deep --strict -v "$appName.app"
|
||||||
hdiutil create -fs HFS+ -srcfolder "$appName.app" -volname "$appName" "$appName.dmg"
|
hdiutil create -fs HFS+ -srcfolder "$appName.app" -volname "$appName" "$appName.dmg"
|
||||||
if [ -f "$appName.dmg" ]; then
|
if [ -f "$appName.dmg" ]; then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue