From 558a81a80ee19289192ac045e014841022370d77 Mon Sep 17 00:00:00 2001 From: Tobias Hagemann Date: Mon, 9 Aug 2021 17:21:11 +0200 Subject: [PATCH] fixing notarization step, apparently that was not how you run multi-line commands --- .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 0b53e112f..e4cb75383 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -405,7 +405,7 @@ jobs: NOTARIZATION_APPLE_ID: ${{ secrets.MACOS_NOTARIZATION_APPLE_ID }} NOTARIZATION_PW: ${{ secrets.MACOS_NOTARIZATION_PW }} NOTARIZATION_TEAM_ID: ${{ secrets.MACOS_NOTARIZATION_TEAM_ID }} - run: > + run: | sudo xcode-select -s /Applications/Xcode_13.0.app echo "${NOTARIZATION_PW}" | xcrun notarytool submit Cryptomator-*.dmg --apple-id ${NOTARIZATION_APPLE_ID} --team-id ${NOTARIZATION_TEAM_ID} --wait xcrun stapler staple Cryptomator-*.dmg