From 1df6c96849fe0aa5fd2fb0bcc79a74e873631fd9 Mon Sep 17 00:00:00 2001 From: Armin Schrenk Date: Wed, 20 Nov 2024 16:57:38 +0100 Subject: [PATCH] fix copy-paste-error [ci skip] --- .github/workflows/build-mac.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-mac.yml b/.github/workflows/build-mac.yml index 4633934..a5566f5 100644 --- a/.github/workflows/build-mac.yml +++ b/.github/workflows/build-mac.yml @@ -116,11 +116,11 @@ jobs: name: cryptomator-cli-mac-${{ matrix.architecture }} path: ./target/cryptomator-cli.app if-no-files-found: error - - name: Patch Cryptomator.app + - name: Patch .app dir run: | - sed -i '' "s|###BUNDLE_SHORT_VERSION_STRING###|${VERSION_NO}|g" ./target/Cryptomator.app/Contents/Info.plist - sed -i '' "s|###BUNDLE_VERSION###|${REVISION_NO}|g" ./target/Cryptomator.app/Contents/Info.plist - echo -n "$PROVISIONING_PROFILE_BASE64" | base64 --decode --output ./target/Cryptomator.app/Contents/embedded.provisionprofile + sed -i '' "s|###BUNDLE_SHORT_VERSION_STRING###|${VERSION_NO}|g" ./target/cryptomator-cli.app/Contents/Info.plist + sed -i '' "s|###BUNDLE_VERSION###|${REVISION_NO}|g" ./target/cryptomator-cli.app/Contents/Info.plist + echo -n "$PROVISIONING_PROFILE_BASE64" | base64 --decode --output ./target/cryptomator-cli.app/Contents/embedded.provisionprofile env: VERSION_NO: ${{ needs.prepare.outputs.semVerNum }} REVISION_NO: ${{ needs.prepare.outputs.revisionNum }}