-
Notifications
You must be signed in to change notification settings - Fork 28
35 lines (32 loc) · 816 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Build/Release
on:
push:
branches:
- master
paths:
- 'build/**'
- 'src/**'
- 'src-electron/**'
- 'index.html'
- 'package.json'
- 'quasar.config.ts'
- 'yarn.lock'
pull_request:
paths:
- 'build/**'
- 'src/**'
- 'src-electron/**'
- 'index.html'
- 'package.json'
- 'quasar.config.ts'
- 'yarn.lock'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
uses: ./.github/workflows/build.yml
secrets:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
SENTRY_SOURCE_MAPS: ${{ (github.event_name == 'push' && 'true') || 'false' }} # TODO: only upload source maps for release builds