File tree 1 file changed +11
-5
lines changed
1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change 1
1
name : " Publish Docs"
2
2
3
3
on :
4
+ push :
5
+ branches : [ "master" ]
4
6
workflow_run :
5
7
workflows : ["CI"]
6
8
branches : [master]
11
13
publishing :
12
14
name : Publish Documentation
13
15
runs-on : ubuntu-latest
14
- if : ${{ github.event.workflow_run.conclusion == 'success' }}
16
+ if : ${{github.event.push || github.event.workflow_run.conclusion == 'success' }}
15
17
steps :
16
18
17
19
- name : 📥 Checkout repository
39
41
workflow : ci-nix.yaml
40
42
workflow_conclusion : success
41
43
branch : release
42
- name : benchmarks
44
+ name : benchmarks.*
45
+ name_is_regexp : true
43
46
path : docs/benchmarks
44
47
45
48
- name : 📥 Download released test-results
49
52
workflow : ci-nix.yaml
50
53
workflow_conclusion : success
51
54
branch : release
52
- name : test-results
55
+ name : test-results.*
56
+ name_is_regexp : true
53
57
path : docs/benchmarks/tests
54
58
55
59
- name : 📥 Download released haddock documentation
@@ -102,7 +106,8 @@ jobs:
102
106
workflow : ci-nix.yaml
103
107
workflow_conclusion : success
104
108
branch : master
105
- name : benchmarks
109
+ name : benchmarks.*
110
+ name_is_regexp : true
106
111
path : docs/benchmarks
107
112
108
113
- name : 📥 Download latest test-results
@@ -112,7 +117,8 @@ jobs:
112
117
workflow : ci-nix.yaml
113
118
workflow_conclusion : success
114
119
branch : master
115
- name : test-results
120
+ name : test-results.*
121
+ name_is_regexp : true
116
122
path : docs/benchmarks/tests
117
123
118
124
- name : 📥 Download latest haddock documentation
You can’t perform that action at this time.
0 commit comments