Skip to content

Commit

Permalink
Fix release workflow if statements
Browse files Browse the repository at this point in the history
Signed-off-by: Javier Guzman <[email protected]>
  • Loading branch information
javierguzman committed Jun 22, 2023
1 parent 58211af commit f0e0274
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Install node_modules
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile --network-timeout 300000 # sometimes yarn takes time, therefore, we increase the timeout
- if: runner.os == 'macos-13'
- if: runner.os == 'macOS'
name: Setup Apple certificates
env:
APPLE_INSTALLER_CERT_BASE64: ${{ secrets.APPLE_INSTALLER_CERT_BASE64 }}
Expand All @@ -71,7 +71,7 @@ jobs:
security list-keychain -d user -s $KEYCHAIN_PATH
# - run: yarn run lint
- if: matrix.os == 'macos-13'
- if: runner.os == 'macOS'
name: Build for MacOS
env:
APPLE_ID: ${{ secrets.APPLEID }}
Expand Down

0 comments on commit f0e0274

Please sign in to comment.