Skip to content

Commit

Permalink
try to fix conditional in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
matthme committed Oct 7, 2024
1 parent 883f500 commit 35fb636
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,15 +80,15 @@ jobs:
# macOS WITHOUT code signing
#---------------------------------------------------------------------------------------
- name: build and upload the app (macOS x86)
if: matrix.platform == 'macos-12' && ${{ steps.shouldMacOSCodeSign.output }} == false
if: matrix.platform == 'macos-12' && ${{ steps.shouldMacOSCodeSign.output }} == 'false'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
yarn build:mac-x64
ls dist
- name: build and upload the app (macOS arm64)
if: matrix.platform == 'macos-latest' && ${{ steps.shouldMacOSCodeSign.output }} == false
if: matrix.platform == 'macos-latest' && ${{ steps.shouldMacOSCodeSign.output }} == 'false'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
Expand All @@ -98,7 +98,7 @@ jobs:
# macOS WITH code signing
#---------------------------------------------------------------------------------------
- name: build and upload the app (macOS x86)
if: matrix.platform == 'macos-12' && ${{ steps.shouldMacOSCodeSign.output }} == true
if: matrix.platform == 'macos-12' && ${{ steps.shouldMacOSCodeSign.output }} == 'true'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
APPLE_DEV_IDENTITY: ${{ secrets.APPLE_DEV_IDENTITY }}
Expand All @@ -111,7 +111,7 @@ jobs:
ls dist
- name: build and upload the app (macOS arm64)
if: matrix.platform == 'macos-latest' && ${{ steps.shouldMacOSCodeSign.output }} == true
if: matrix.platform == 'macos-latest' && ${{ steps.shouldMacOSCodeSign.output }} == 'true'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
APPLE_DEV_IDENTITY: ${{ secrets.APPLE_DEV_IDENTITY }}
Expand Down

0 comments on commit 35fb636

Please sign in to comment.