File tree Expand file tree Collapse file tree 2 files changed +26
-14
lines changed Expand file tree Collapse file tree 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 11name : CI
22on :
3- push :
4- branches :
5- - auto
6- - try
73 pull_request :
8- branches :
9- - master
4+ merge_group :
105
116jobs :
127 style :
2924 - run : ci/dox.sh
3025 env :
3126 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'
4027
4128 verify :
4229 name : Automatic intrinsic verification
You can’t perform that action at this time.
0 commit comments