-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Repoändringar] Lägg till automatiskt kompilering av dokumenten
- Loading branch information
Showing
11 changed files
with
59 additions
and
313 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: Compile PDFs | ||
run-name: Recompile after ${{ github.actor }}'s changes | ||
on: [push] | ||
|
||
jobs: | ||
compile-pdfs: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: texlive/texlive:latest | ||
env: | ||
TEXINPUTS: ".:..:" | ||
steps: | ||
- name: Install `gh` | ||
run: | | ||
(type -p wget >/dev/null || (apt update && apt-get install wget -y)) \ | ||
&& mkdir -p -m 755 /etc/apt/keyrings \ | ||
&& wget -qO- \ | ||
https://cli.github.com/packages/githubcli-archive-keyring.gpg | \ | ||
tee /etc/apt/keyrings/githubcli-archive-keyring.gpg > /dev/null \ | ||
&& chmod go+r /etc/apt/keyrings/githubcli-archive-keyring.gpg \ | ||
&& echo "deb [arch=$(dpkg --print-architecture) \ | ||
signed-by=/etc/apt/keyrings/githubcli-archive-keyring.gpg] \ | ||
https://cli.github.com/packages stable main" | \ | ||
tee /etc/apt/sources.list.d/github-cli.list > /dev/null \ | ||
&& apt update \ | ||
&& apt install gh -y | ||
- name: Check out document sources | ||
uses: actions/checkout@v4 | ||
- name: Create build directory | ||
run: mkdir build | ||
- name: list | ||
run: ls | ||
- name: Compile statutes | ||
run: | | ||
latexmk -outdir=../build -cd stadgar/stadgar.tex | ||
- name: Compile regulations | ||
run: | | ||
latexmk -outdir=../build -cd reglemente/reglemente.tex | ||
- name: Compile policies | ||
run: | | ||
for filename in policyer/*.tex; do | ||
latexmk -outdir=../build -cd $filename | ||
done | ||
- name: Compile guidelines | ||
run: | | ||
for filename in riktlinjer/*.tex; do | ||
latexmk -outdir=../build -cd $filename | ||
done | ||
- name: List outputs | ||
run: ls build | ||
- name: Create release | ||
run: | | ||
git config --global --add safe.directory \ | ||
/__w/styrdokument/styrdokument | ||
gh release create latest build/*.pdf | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
$pdf_mode = 1; | ||
$pdflatex = 'lualatex -interaction=nonstopmode'; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.