git doesn't like me :( #11
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: Generate PDFs | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Git repository | |
uses: actions/checkout@v4 | |
- name: Compile Problems | |
uses: xu-cheng/latex-action@v3 | |
with: | |
root_file: | | |
constitution.tex | |
work_in_root_file_dir: true | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Constitution | |
path: constitution.pdf | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: | | |
constitution.pdf |