Skip to content

Commit

Permalink
chore: fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rajivshah3 committed Apr 2, 2022
1 parent 922b705 commit dfbc753
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ jobs:
- name: Install Sentry CLI
# Yarn has issues putting binaries in the PATH on Windows
run: npm i -g @sentry/cli
if: ${{ startsWith(github.ref, 'refs/tags/desktop') }}
if: ${{ startsWith(github.ref, 'refs/tags/desktop') && matrix.os == 'windows-2019' }}

- name: Upload backend PDB (Windows)
run: |
Expand All @@ -127,7 +127,7 @@ jobs:
working-directory: packages/backend/bindings/node/native/target/x86_64-pc-windows-msvc/release
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
if: ${{ startsWith(github.ref, 'refs/tags/desktop') }}
if: ${{ startsWith(github.ref, 'refs/tags/desktop') && matrix.os == 'windows-2019' }}

- name: Set productName
run: node scripts/fix-productName.js
Expand Down

0 comments on commit dfbc753

Please sign in to comment.