Skip to content

WIP Publish artifact at every build #9

WIP Publish artifact at every build

WIP Publish artifact at every build #9

Workflow file for this run

name: LaTeX build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- uses: xu-cheng/latex-action@v3
with:
root_file: tex/document.tex
args: -pdf -file-line-error -halt-on-error -interaction=nonstopmode
- name: Set current date as env variable
run: echo "NOW=$(date +'%Y-%m-%dT%H:%M:%S')" >> $GITHUB_ENV
- name: Echo current date
run: echo $NOW