Gender-neutrale Formulierung #18
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_call: # to reuse by release workflow | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code. | |
uses: actions/checkout@v3 | |
- name: Build PDFs from tex files | |
uses: xu-cheng/latex-action@v2 | |
with: | |
root_file: | | |
Satzung.tex | |
- name: Build PDFs from md files | |
uses: baileyjm02/[email protected] | |
with: | |
input_dir: / | |
output_dir: / | |
# Default is true, can set to false to only get PDF files | |
build_html: false | |
- name: Upload PDFs temporary. | |
uses: actions/[email protected] | |
with: | |
name: PDFs | |
path: "*.pdf" | |
retention-days: 5 | |
if-no-files-found: error |