-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtaskctl.yaml
42 lines (36 loc) · 974 Bytes
/
taskctl.yaml
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
36
37
38
39
40
41
42
# This is a taskctl's tasks configuration file.
# More information at https://github.com/taskctl/taskctl
pipelines:
start:
- task: install
- task: build
depends_on: install
- task: start
depends_on: build
publish:
- task: install
- task: build
depends_on: install
- task: publish
depends_on: build
tasks:
install:
command:
- npm --prefix apps/electron install
- npm --prefix apps/renderer ci --ignore-scripts
build:
command:
- npm run --prefix apps/renderer version
- npm run --prefix apps/renderer build:frontend
- npm run --prefix apps/renderer build:backend
- npm run --prefix apps/electron build
publish:
command:
- npm run --prefix apps/electron make
- npm run --prefix apps/electron publish
env_file: .envrc
start:
command:
- npm run --prefix apps/electron build
- npm run --prefix apps/electron start
output: raw