Compare commits

...

1 Commits

Author SHA1 Message Date
Michał Rudowicz aa41005c44 Budowanie statutu za pomocą Forgejo Actions
/ statut (push) Failing after 15s Details
/ statut (pull_request) Failing after 3s Details
2025-02-25 10:29:40 +01:00
4 changed files with 26 additions and 0 deletions

5
.Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM debian:12
RUN apt-get update && apt-get install -y --no-install-recommends \
latexmk texlive texlive-lang-polish pandoc \
&& rm -rf /var/lib/apt/lists/*

View File

@ -0,0 +1,16 @@
on:
push:
pull_request:
types: [opened, synchronize, reopened]
jobs:
statut:
runs-on: docker
container:
image: git.hswro.org/hswro/documents_build:latest
steps:
- uses: actions/checkout@v3
- run: cd statut && latexmk "Statut HSWro.tex"
- uses: actions/upload-artifact@v3
with:
name: "Statut HSWro"
path: "statut/Statut HSWro.pdf"

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
*.aux
*.fdb_latexmk
*.fls
*.pdf
*.log

Binary file not shown.