File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -131,16 +131,18 @@ jobs:
131131 echo "No .app found under ../VSCode-darwin-arm64"
132132 exit 1
133133 fi
134- SIGN_IDENTITY="$(security find-identity -v -p codesigning | sed -n 's/.*\"\\(Developer ID Application:.*\\)\".*/\\1/p' | head -n 1)"
134+ SIGN_IDENTITY="$(security find-identity -v -p codesigning build.keychain | sed -n 's/.*\"\\(Developer ID Application:.*\\)\".*/\\1/p' | head -n 1)"
135135 if [ -z "$SIGN_IDENTITY" ]; then
136136 echo "No Developer ID Application identity found"
137137 exit 1
138138 fi
139139 codesign --force --options runtime --timestamp \
140+ --keychain build.keychain \
140141 --entitlements build/azure-pipelines/darwin/app-entitlements.plist \
141142 --sign "$SIGN_IDENTITY" "$APP_PATH"
142143 codesign --verify --deep --strict --verbose=2 "$APP_PATH"
143144
145+
144146 - name : Notarize and staple
145147 env :
146148 APPLE_ID : ${{ secrets.APPLE_ID }}
You can’t perform that action at this time.
0 commit comments