diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f372107..20fbcc7 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -96,7 +96,7 @@ jobs: ls dist - name: build and upload the app (macOS arm64) - if: matrix.platform == 'macos-latest' && steps.shouldMacOSCodeSign.outputs.MACOS_CODE_SIGNING == false + if: matrix.platform == 'macos-latest' && steps.shouldMacOSCodeSign.outputs.MACOS_CODE_SIGNING == 'false' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} CSC_IDENTITY_AUTO_DISCOVERY: false @@ -107,7 +107,7 @@ jobs: # macOS WITH code signing #--------------------------------------------------------------------------------------- - name: build and upload the app (macOS x86) - if: matrix.platform == 'macos-12' && steps.shouldMacOSCodeSign.outputs.MACOS_CODE_SIGNING == true + if: matrix.platform == 'macos-12' && steps.shouldMacOSCodeSign.outputs.MACOS_CODE_SIGNING == 'true' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} APPLE_DEV_IDENTITY: ${{ secrets.APPLE_DEV_IDENTITY }} @@ -120,7 +120,7 @@ jobs: ls dist - name: build and upload the app (macOS arm64) - if: matrix.platform == 'macos-latest' && steps.shouldMacOSCodeSign.outputs.MACOS_CODE_SIGNING == true + if: matrix.platform == 'macos-latest' && steps.shouldMacOSCodeSign.outputs.MACOS_CODE_SIGNING == 'true' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} APPLE_DEV_IDENTITY: ${{ secrets.APPLE_DEV_IDENTITY }}