-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (38 loc) · 944 Bytes
/
docs.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: Generate documentation
on:
workflow_dispatch:
pull_request:
branches:
- main
jobs:
Publish:
strategy:
matrix:
os: [macos-latest]
runs-on: ${{ matrix.os }}
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3
with:
repository: "TootSDK/TootSDK"
path: "./TootSDK"
- name: Install jazzy
run: |
gem install jazzy
- name: Jazzy version
run: |
jazzy -version
type -a jazzy
- name: Print dir
run: |
pwd
ls
- name: Regenerate docs
run: |
bash ./updatedocs.sh
# Commit all changed files back to the repository
- uses: stefanzweifel/git-auto-commit-action@v4