-
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (38 loc) · 1.07 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
name: Documentation
on:
release:
types: [published]
jobs:
deploy_docs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Cache gems
uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-flow-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-flow
- name: Bundle install
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Generate Documentation
run: |
bundle exec jazzy --config .jazzy.yaml
- name: Commit 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"
- name: Push changes
uses: ad-m/github-push-action@master
with:
directory: docs
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
force: true