Philipp Horstenkamp c445f6fd29
All checks were successful
Latex Build / LatexBuild (push) Successful in 13s
Added a ls command for testing.
2023-11-07 04:02:56 +01:00

27 lines
667 B
YAML

name: Latex Build
run-name: ${{ github.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
LatexBuild:
runs-on: pi64
container:
image: git.horstenkamp.eu/server/textlive-docker-image/texlive:experimental
credentials:
username: runner
password: ${{ secrets.PACKAGES }}}
steps:
- name: Checkout
uses: actions/checkout@v3
- run: pdflatex pal-vorstellung.tex
- run: |
ls -la
mkdir artifacts
# cp *.pdf artifacts/
cp *.tex artifacts/
cat *.tex
- uses: actions/upload-artifact@v3
with:
path: pal-vorstellung.pdf
name: pal-vorstellung.pdf