diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 8f55384..3983a5d 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -80,7 +80,7 @@ jobs: # macOS WITHOUT code signing #--------------------------------------------------------------------------------------- - name: build and upload the app (macOS x86) - if: matrix.platform == 'macos-12' && ${{ steps.shouldMacOSCodeSign.outputs.MACOS_CODE_SIGNING }} == false + if: matrix.platform == 'macos-12' && ${{ steps.shouldMacOSCodeSign.outputs.MACOS_CODE_SIGNING }} == 'false' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} CSC_IDENTITY_AUTO_DISCOVERY: false @@ -89,7 +89,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 @@ -100,7 +100,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 }} @@ -113,7 +113,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 }}