Skip to content

Commit ac51227

Browse files
committed
fix: mac notarization errors
1 parent af50d3a commit ac51227

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/tauri-build-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ jobs:
205205
# Sign the files specified in src-build/mac/filesToSign
206206
while IFS= read -r file; do
207207
if [ -f "$file" ]; then
208-
codesign --sign "$APPLE_KEY_IDENTITY_NAME" --keychain build.keychain --timestamp --options runtime "$file"
208+
codesign --force --sign "$APPLE_KEY_IDENTITY_NAME" --keychain build.keychain --timestamp --options runtime "$file"
209209
else
210210
echo "File to sign not found, ignoring: $file"
211211
fi

.github/workflows/tauri-build-prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ jobs:
206206
# Sign the files specified in src-build/mac/filesToSign
207207
while IFS= read -r file; do
208208
if [ -f "$file" ]; then
209-
codesign --sign "$APPLE_KEY_IDENTITY_NAME" --keychain build.keychain --timestamp --options runtime "$file"
209+
codesign --force --sign "$APPLE_KEY_IDENTITY_NAME" --keychain build.keychain --timestamp --options runtime "$file"
210210
else
211211
echo "File to sign not found, ignoring: $file"
212212
fi

.github/workflows/tauri-build-staging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ jobs:
205205
# Sign the files specified in src-build/mac/filesToSign
206206
while IFS= read -r file; do
207207
if [ -f "$file" ]; then
208-
codesign --sign "$APPLE_KEY_IDENTITY_NAME" --keychain build.keychain --timestamp --options runtime "$file"
208+
codesign --force --sign "$APPLE_KEY_IDENTITY_NAME" --keychain build.keychain --timestamp --options runtime "$file"
209209
else
210210
echo "File to sign not found, ignoring: $file"
211211
fi

0 commit comments

Comments
 (0)