Skip to content

Commit c55ebdb

Browse files
committed
s/APPLE_SIGN_ID/APPLE_CERTIFICATE_ID/g
1 parent 6671c1f commit c55ebdb

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,9 +220,9 @@ jobs:
220220
env:
221221
APPLE_CERTIFICATE_P12_BASE64: ${{ secrets.APPLE_CERTIFICATE_P12_BASE64 }}
222222
APPLE_CERTIFICATE_PASSWORD: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }}
223+
APPLE_CERTIFICATE_ID: ${{ secrets.APPLE_CERTIFICATE_ID }}
223224
APPLE_NOTARIZATION_PASSWORD: ${{ secrets.APPLE_NOTARIZATION_PASSWORD }}
224225
APPLE_NOTARIZATION_USERNAME: ${{ secrets.APPLE_NOTARIZATION_USERNAME }}
225-
APPLE_SIGN_ID: ${{ secrets.APPLE_SIGN_ID }}
226226
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
227227
- uses: actions/upload-artifact@v4
228228
if: github.event_name != 'pull_request'

installers/macos/build.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,12 @@ macdeployqt ${PRODUCT_NAME}.app \
9191
-executable=${PRODUCT_NAME}.app/Contents/MacOS/CrashReporter \
9292
-executable=${PRODUCT_NAME}.app/Contents/MacOS/MessageBox \
9393
-executable=${PRODUCT_NAME}.app/Contents/MacOS/Updater \
94-
-codesign="${APPLE_SIGN_ID}"
94+
-codesign="${APPLE_CERTIFICATE_ID}"
9595

9696
if [ -n "${SIGNING_ENABLED}" ]
9797
then
9898
echo "Signing..."
99-
codesign --verbose --deep --force --options runtime --sign "${APPLE_SIGN_ID}" \
99+
codesign --verbose --deep --force --options runtime --sign "${APPLE_CERTIFICATE_ID}" \
100100
${PRODUCT_NAME}.app || exit $?
101101

102102
cat <<EOF > QtWebEngineProcess.entitlements
@@ -111,12 +111,12 @@ then
111111
EOF
112112

113113
echo "Signing QtWebEngine..."
114-
codesign --verbose --force --options runtime --sign "${APPLE_SIGN_ID}" \
114+
codesign --verbose --force --options runtime --sign "${APPLE_CERTIFICATE_ID}" \
115115
--entitlements QtWebEngineProcess.entitlements \
116116
${PRODUCT_NAME}.app/Contents/Frameworks/QtWebEngineCore.framework/Helpers/QtWebEngineProcess.app/Contents/MacOS/QtWebEngineProcess || exit $?
117117

118118
echo "Resigning main executable..."
119-
codesign --verbose --force --options runtime --sign "${APPLE_SIGN_ID}" \
119+
codesign --verbose --force --options runtime --sign "${APPLE_CERTIFICATE_ID}" \
120120
${PRODUCT_NAME}.app/Contents/MacOS/${PRODUCT_NAME} || exit $?
121121

122122
echo "Verifying..."

0 commit comments

Comments
 (0)