-
Notifications
You must be signed in to change notification settings - Fork 0
27 lines (27 loc) · 727 Bytes
/
make.yml
File metadata and controls
27 lines (27 loc) · 727 Bytes
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
name: Build & commit
on: push
permissions:
contents: write
jobs:
report:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.ACTION_TOKEN }}
- name: Setup Pandoc and LaTeX
uses: pandoc/actions/setup@v1
with:
version: latest
- name: Install LaTeX fonts
run: |
sudo apt-get update
sudo apt-get install -y texlive-fonts-extra
- name: Make docs
run: make all
- name: Commit and push changes
uses: devops-infra/action-commit-push@master
with:
github_token: ${{ secrets.ACTION_TOKEN }}
commit_message: make documentation