ci-test/.gitea/workflows/demo.yaml
Maximilian Keßler e009aee428
Some checks failed
Gitea Actions Demo / checkout (push) Failing after 14m54s
test ci again
2023-10-16 20:57:19 +02:00

28 lines
650 B
YAML

name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
checkout:
runs-on: ubuntu-latest
steps:
- name: check out repo
uses: actions/checkout@v3
- name: list files
run: |
echo "In outer docker container:"
ls /workspace/testorg/ci-test
pwd
ls /home
echo "Docker images: $(docker images)"
echo "end outer print"
- name: compile
run: |
latexmk main.tex
- name: upload
uses: actions/upload-artifact@v3
with:
name: out.pdf
path: main.pdf