Skip to content

Commit ca2c3b5

Browse files
committed
remove cdoe signing. it actually makes he ux worse by giving error -47 since the signature cant be verified
1 parent 9255a27 commit ca2c3b5

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

.github/workflows/build-reusable.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,6 @@ jobs:
2525
cd MacOS
2626
make
2727
28-
- name: Ad-hoc sign the app bundle
29-
run: |
30-
codesign --force --sign - "MacOS/release/Kiwi8.app/Contents/Frameworks/libSDL2-2.0.0.dylib"
31-
codesign --force --sign - "MacOS/release/Kiwi8.app/Contents/MacOS/Kiwi8"
32-
codesign --force --sign - "MacOS/release/Kiwi8.app"
33-
codesign --verify --verbose "MacOS/release/Kiwi8.app"
34-
3528
- name: Zip application bundle
3629
run: zip -r -y "MacOS/release/Kiwi8-${{ github.ref_name }}-macOS.zip" "MacOS/release/Kiwi8.app"
3730

MacOS/makefile

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,6 @@ $(APP_BUNDLE): $(APP_EXE) $(SDL_LIB) resources/Kiwi8.icns src/Info.plist
7878
cp resources/Kiwi8.icns $(APP_BUNDLE)/Contents/Resources/Kiwi8.icns
7979
cp src/Info.plist $(APP_BUNDLE)/Contents/Info.plist
8080

81-
# Ad-hoc sign the bundle (framework -> executable -> bundle)
82-
codesign --force --sign - $(APP_BUNDLE)/Contents/Frameworks/libSDL2-2.0.0.dylib
83-
codesign --force --sign - $(APP_BUNDLE)/Contents/MacOS/$(APP_NAME)
84-
codesign --force --sign - $(APP_BUNDLE)
85-
8681
# Update directory timestamp so Make knows bundle is up-to-date
8782
touch $(APP_BUNDLE)
8883

0 commit comments

Comments
 (0)