We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b370aae commit 5c87bb2Copy full SHA for 5c87bb2
1 file changed
.github/workflows/build-and-release.yml
@@ -141,6 +141,12 @@ jobs:
141
-imagekey zlib-level=9 \
142
"$APP_NAME-$VERSION.dmg"
143
144
+ # Sign the DMG
145
+ codesign --force --options runtime --timestamp \
146
+ --sign "Developer ID Application: ${{ secrets.DEVELOPER_ID }}" \
147
+ "$APP_NAME-$VERSION.dmg"
148
+ codesign --verify --verbose=2 "$APP_NAME-$VERSION.dmg"
149
+
150
shasum -a 256 "$APP_NAME-$VERSION.zip" > "$APP_NAME-$VERSION.zip.sha256"
151
shasum -a 256 "$APP_NAME-$VERSION.dmg" > "$APP_NAME-$VERSION.dmg.sha256"
152
0 commit comments