File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff 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'
Original file line number Diff line number Diff 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
9696if [ -n " ${SIGNING_ENABLED} " ]
9797then
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
111111EOF
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..."
You can’t perform that action at this time.
0 commit comments