File tree 2 files changed +26
-14
lines changed
2 files changed +26
-14
lines changed Original file line number Diff line number Diff line change
1
+ name : Docs
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+
8
+ jobs :
9
+ docs :
10
+ name : Publish Documentation
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - uses : actions/checkout@v4
14
+ - name : Install Rust
15
+ run : rustup update nightly --no-self-update && rustup default nightly
16
+ - run : ci/dox.sh
17
+ env :
18
+ CI : 1
19
+ - name : Publish documentation
20
+ run : |
21
+ cd target/doc
22
+ git init
23
+ git add .
24
+ git -c user.name='ci' -c user.email='ci' commit -m init
25
+ git push -f -q https://git:${{ secrets.github_token }}@github.com/${{ github.repository }} HEAD:gh-pages
Original file line number Diff line number Diff line change 1
1
name : CI
2
2
on :
3
- push :
4
- branches :
5
- - auto
6
- - try
7
3
pull_request :
8
- branches :
9
- - master
4
+ merge_group :
10
5
11
6
jobs :
12
7
style :
29
24
- run : ci/dox.sh
30
25
env :
31
26
CI : 1
32
- - name : Publish documentation
33
- run : |
34
- cd target/doc
35
- git init
36
- git add .
37
- git -c user.name='ci' -c user.email='ci' commit -m init
38
- git push -f -q https://git:${{ secrets.github_token }}@github.com/${{ github.repository }} HEAD:gh-pages
39
- if : github.event_name == 'push' && github.event.ref == 'refs/heads/master'
40
27
41
28
verify :
42
29
name : Automatic intrinsic verification
You can’t perform that action at this time.
0 commit comments