Skip to content
This repository has been archived by the owner on Dec 27, 2024. It is now read-only.

Commit

Permalink
Merge pull request #5 from sircharlo/sircharlo-patch-2
Browse files Browse the repository at this point in the history
Update build.yml
  • Loading branch information
sircharlo authored Jun 18, 2024
2 parents b172900 + 1fc0236 commit 7a0d6f2
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,19 @@ jobs:
- run: pip install setuptools
- run: yarn install && yarn global add @quasar/cli

- run: yarn quasar build -m electron -P always
- name: Build and publish Electron app
if: "!startsWith(github.head_ref, 'dependabot/')"
run: yarn quasar build -m electron -P always
env:
GITHUB_TOKEN: ${{ github.token }}
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}

- name: Build Electron app
if: "startsWith(github.head_ref, 'dependabot/')"
run: yarn quasar build -m electron
env:
GITHUB_TOKEN: ${{ github.token }}
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}


# - name: Build/release Electron app
# uses: samuelmeuli/action-electron-builder@v1
Expand Down

0 comments on commit 7a0d6f2

Please sign in to comment.