-
Notifications
You must be signed in to change notification settings - Fork 15
48 lines (46 loc) · 1.01 KB
/
release-sisyphos.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
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Release Chainflip Sisyphos
on:
push:
branches:
- 'release/[0-9]+.[0-9]+'
concurrency:
group: ${{ github.ref }}-release-sisyphos
cancel-in-progress: true
jobs:
pre-check:
uses: ./.github/workflows/_01_pre_check.yml
secrets: inherit
test:
uses: ./.github/workflows/_10_test.yml
secrets: inherit
build:
needs: [test]
uses: ./.github/workflows/_20_build.yml
secrets: inherit
with:
network: sisyphos
docker:
needs: [build]
uses: ./.github/workflows/_24_docker.yml
secrets: inherit
with:
network: sisyphos
environment: dev
package:
needs: [build]
uses: ./.github/workflows/_25_package.yml
with:
network: "sisyphos"
environment: dev
secrets: inherit
post-check:
needs: [build]
uses: ./.github/workflows/_40_post_check.yml
secrets: inherit
publish:
needs: [package]
uses: ./.github/workflows/_30_publish.yml
with:
version: "sisyphos/"
environment: dev
secrets: inherit