Skip to content

experiments + readme #4

experiments + readme

experiments + readme #4

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build_figures:
runs-on: ubuntu-latest
container: kjarosh/latex:2024.4-small
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
apk add make pdf2svg --repository=https://dl-cdn.alpinelinux.org/alpine/edge/testing
tlmgr install latexmk standalone svn-prov pgfplots
- name: Build figures
run: make -j$(nproc)
- uses: actions/upload-artifact@v4
id: upload-artifact-step
with:
name: figures
path: output
- run: |
echo "Browse at: https://acts-herald.app.cern.ch/view/acts-project/figures/${{ steps.upload-artifact-step.outputs.artifact-id }}/" | tee $GITHUB_STEP_SUMMARY