Skip to content

Commit f6fa30c

Browse files
committed
Use anonymous (AKA default) cert by default on macos code sign
1 parent e85d917 commit f6fa30c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ dist/ActivityWatch.dmg: dist/ActivityWatch.app
155155
# Don't try to run this outside CI, it causes messes in your macos keychain
156156
codesign-dmg: dist/ActivityWatch.dmg
157157
./scripts/ci/import-macos-p12.sh
158-
codesign --verbose -s "aw_certificate" --deep dist/ActivityWatch.dmg
158+
codesign --verbose -s aw_certificate --deep dist/ActivityWatch.dmg
159159

160160
package:
161161
mkdir -p dist/activitywatch

scripts/ci/import-macos-p12.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22
# Source: https://www.update.rocks/blog/osx-signing-with-travis/
3-
export KEY_CHAIN=aw-build.keychain
4-
export CERTIFICATE_P12="aw_certificate"
3+
export KEY_CHAIN=build.keychain
4+
export CERTIFICATE_P12=aw_certificate
55

66
# Recreate the certificate from the secure environment variable
77
echo $CERTIFICATE_OSX_P12 | base64 --decode > $CERTIFICATE_P12

0 commit comments

Comments
 (0)