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

Update build.yml #18

Merged
merged 1 commit into from
Jun 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ jobs:
- run: yarn install && yarn global add @quasar/cli

- name: Build and publish Electron app
if: "!startsWith(github.ref, 'refs/tags/v')"
if: "startsWith(github.ref, 'refs/tags/v')"
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.ref, 'refs/tags/v')"
if: "!startsWith(github.ref, 'refs/tags/v')"
run: yarn quasar build -m electron
env:
GITHUB_TOKEN: ${{ github.token }}
Expand Down
Loading