From 724e104352bf76738d4fc7a1f0e8338d78071208 Mon Sep 17 00:00:00 2001 From: Roland Rabien Date: Fri, 1 Sep 2023 13:30:35 -0700 Subject: [PATCH] Oops, that was backwards --- ci/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/build.sh b/ci/build.sh index 7d72dd5..f61c2a8 100755 --- a/ci/build.sh +++ b/ci/build.sh @@ -12,7 +12,7 @@ fi if [ "$(uname)" == "Darwin" ]; then # Create a temp keychain if [ -n "$GITHUB_ACTIONS" ]; then - if [ -z "$APPLICATION" ]; then + if [ -n "$APPLICATION" ]; then echo "Create a keychain" security create-keychain -p nr4aGPyz Keys.keychain @@ -55,7 +55,7 @@ if [ "$(uname)" == "Darwin" ]; then cp -R "$ROOT/Builds/xcode/${PLUGIN}_artefacts/Release/VST3/$PLUGIN.vst3" "$ROOT/ci/bin" cd "$ROOT/ci/bin" - if [ -z "$APPLICATION" ]; then + if [ -n "$APPLICATION" ]; then codesign -s "$DEV_APP_ID" -v $PLUGIN.vst --options=runtime --timestamp --force codesign -s "$DEV_APP_ID" -v $PLUGIN.vst3 --options=runtime --timestamp --force codesign -s "$DEV_APP_ID" -v $PLUGIN.component --options=runtime --timestamp --force