website.yml (516B) download
1name: Publish Documentation
2
3on:
4 push:
5 branches: 'master'
6
7jobs:
8 publish:
9 runs-on: ubuntu-latest
10 steps:
11 - name: Check out
12 uses: actions/checkout@v3
13
14 - name: Configuring Environment
15 run: ./configure --verbose
16
17 - name: Generate Documentation
18 run: 'make documentation'
19
20 - name: Publish current workdir to GitHub Pages
21 uses: rayluo/[email protected]
22 with:
23 source-directory: target/docs
24 target-branch: gh_pages