-
-
Notifications
You must be signed in to change notification settings - Fork 129
47 lines (40 loc) · 1.13 KB
/
documentation.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Documentation
on:
release:
types: [published]
workflow_dispatch:
jobs:
deploy_docs:
runs-on: macos-latest
steps:
- # Checkout the repository
uses: actions/checkout@v4
- # Install Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- # Generate Docs
name: Generate Documentation
run: bundle exec jazzy --config .jazzy.yaml
- # Small Jazzy fixes for GitHub Pages
name: Fix Invalid URLs
run: |
cd docs
touch .nojekyll
- # Commit newly generated docs
name: Commit Documentation Files
run: |
cd docs
git init
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add .
git commit -m "Deploying Updated Jazzy Docs"
- # Publish generated docs to the GitHub pages branch
name: Push changes
uses: ad-m/github-push-action@master
with:
directory: docs
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
force: true