Files
latex/.gitea/workflows/build-docs.yml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 17: mapping key "username" already defined at line 16
2025-12-22 18:29:49 +01:00

30 lines
923 B
YAML

name: Build docs
on:
push
# push:
# paths:
# - 'docs/**'
jobs:
build_docs:
runs_on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@v6
- name: Sign into gitea registry
uses: https://github.com/docker/login-action
with:
username: ${{ vars.REGISTRY_USER_USERNAME }}
username: ${{ secrets.REGISTRY_USER_PASSWORD }}
registry: ${{ vars.REGISTRY_BASE_URL }}
- name: Run build
uses: actions/latex@v1
with:
args: "-latexoption=-file-line-error -latexoption=-interaction=nonstopmode docs/docs.tex"
- name: Upload compiled docs
uses: actions/git-auto-commit-action@v7
with:
commit_message: "[skip ci] Build docs on push"
file_pattern: '*.tex'
commit_user_name: LaTeX compiler [bot]
commit_user_email: actions@janishutz.com