Skip to content

fixup! 2024-10-09: update, refactor, and simplify #75

fixup! 2024-10-09: update, refactor, and simplify

fixup! 2024-10-09: update, refactor, and simplify #75

Workflow file for this run

name: "Run latexmk"
on:
push:
workflow_dispatch:
jobs:
latexmk:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v13
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- uses: DeterminateSystems/magic-nix-cache-action@v7
- run: nix build -o cv.pdf
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: cv.pdf
prerelease: true