Skip to content

Update workflow badge #12

Update workflow badge

Update workflow badge #12

Workflow file for this run

name: Build LaTeX document
on:
push:
tags:
- 'v*' # Only runs on version tags like v1.0.0
workflow_dispatch: # Also allow manual triggering
jobs:
build_latex:
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@v4
- name: Compile LaTeX document
uses: xu-cheng/latex-action@v3
with:
root_file: gfkg_notes.tex
- name: Create GitHub Release
if: startsWith(github.ref, 'refs/tags/v')
uses: softprops/action-gh-release@v2
with:
files: gfkg_notes.pdf
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT_GFKG }}