blob: 02a2b84c58cbc27df977f69a3ec03fc239f24bba (
plain)
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
|
name: Push to master
on:
push:
branches:
- master
paths:
- 'build.zig'
- 'build.zig.zon'
- 'ext/**'
- '!ext/**.md'
- 'pkg/**'
- '.github/workflows/**.yml'
- '*.sh'
jobs:
urbit:
uses: ./.github/workflows/shared.yml
with:
pace: 'live'
upload: true
fake_tests: false
secrets: inherit
docker:
uses: ./.github/workflows/docker-shared.yml
with:
pace: 'live'
secrets: inherit
|