Skip to content

Release week 13 content. #3

Release week 13 content.

Release week 13 content. #3

Workflow file for this run

name: Build Examples
on:
workflow_dispatch:
push:
paths:
- examples/**
jobs:
build-examples:
runs-on: ubuntu-latest
container: texlive/texlive:latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Disable git owner warning
run: git config --global safe.directory '*'
- name: Install Java
run: apt-get update && apt-get install -y default-jre graphviz
- name: Correct last modified
run: ./.github/workflows/set-last-updated.sh
- name: Compile Examples
run: ./bin/build_examples.sh
- name: Upload Examples
uses: actions/upload-artifact@v4
with:
name: examples
path: |
./dist/**/*