add workflow

This commit is contained in:
2025-02-22 14:24:10 +01:00
parent c7afb05b61
commit f9b754a392
2 changed files with 23 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
name: generate pdf files
on:
push:
branches: ["main"]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: install deps
run: sudo apt-get update && sudo apt-get install make && sudo make install_ubuntu
- name: generate
run: make all
- uses: actions/upload-artifact@v4
with:
name: documents
path: pdf/*
overwrite: true