From 95d8951da07e89a2fd88df198651bc9f68a1e36b Mon Sep 17 00:00:00 2001 From: Tobias Hagemann Date: Fri, 6 Aug 2021 08:47:55 +0200 Subject: [PATCH] provide macos notarization pw via stdin --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 046ab3f6e..0b53e112f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -407,7 +407,7 @@ jobs: NOTARIZATION_TEAM_ID: ${{ secrets.MACOS_NOTARIZATION_TEAM_ID }} run: > sudo xcode-select -s /Applications/Xcode_13.0.app - xcrun notarytool submit Cryptomator-*.dmg --apple-id ${NOTARIZATION_APPLE_ID} --password ${NOTARIZATION_PW} --team-id ${NOTARIZATION_TEAM_ID} --wait + echo "${NOTARIZATION_PW}" | xcrun notarytool submit Cryptomator-*.dmg --apple-id ${NOTARIZATION_APPLE_ID} --team-id ${NOTARIZATION_TEAM_ID} --wait xcrun stapler staple Cryptomator-*.dmg - name: Upload mac-dmg uses: actions/upload-artifact@v2