File tree Expand file tree Collapse file tree 2 files changed +4
-30
lines changed Expand file tree Collapse file tree 2 files changed +4
-30
lines changed Original file line number Diff line number Diff line change 10
10
name : Call QA
11
11
uses : ./.github/workflows/test.yml
12
12
13
- qa-successful-main :
14
- needs : qa-main
15
- name : Evaluate QA results
16
- if : ( success() || failure() )
17
- runs-on : ubuntu-22.04
18
- steps :
19
- - name : Success
20
- if : ${{ !(contains(needs.*.result, 'failure')) }}
21
- run : exit 0
22
- - name : Failure
23
- if : ${{ contains(needs.*.result, 'failure') }}
24
- run : exit 1
25
-
26
13
pre-relase :
27
- needs : qa-successful- main
14
+ needs : qa-main
28
15
name : Publish
29
16
if : github.ref == 'refs/heads/main'
30
17
runs-on : ubuntu-22.04
81
68
82
69
docs-deploy :
83
70
name : Call Deployment
84
- needs : qa-successful- main
71
+ needs : qa-main
85
72
if : github.ref == 'refs/heads/main'
86
73
uses : ./.github/workflows/docs-deploy.yml
Original file line number Diff line number Diff line change 10
10
name : Call QA
11
11
uses : ./.github/workflows/test.yml
12
12
13
- qa-successful-tag :
14
- needs : qa-tag
15
- name : Evaluate QA results
16
- if : ( success() || failure() )
17
- runs-on : ubuntu-22.04
18
- steps :
19
- - name : Success
20
- if : ${{ !(contains(needs.*.result, 'failure')) }}
21
- run : exit 0
22
- - name : Failure
23
- if : ${{ contains(needs.*.result, 'failure') }}
24
- run : exit 1
25
-
26
13
release :
27
- needs : qa-successful- tag
14
+ needs : qa-tag
28
15
name : Publish action
29
16
runs-on : ubuntu-22.04
30
17
concurrency : lib-publish
75
62
76
63
docs-deploy :
77
64
name : Call Deployment
78
- needs : qa-successful- tag
65
+ needs : qa-tag
79
66
if : github.ref == 'refs/heads/main'
80
67
uses : ./.github/workflows/docs-deploy.yml
You can’t perform that action at this time.
0 commit comments