ci-test/.gitea/workflows/demo.yaml

27 lines
598 B
YAML
Raw Normal View History

2023-10-03 16:09:10 +02:00
name: Gitea Actions Demo
2023-10-03 16:29:52 +02:00
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
2023-10-03 16:09:10 +02:00
on: [push]
2023-10-03 16:29:52 +02:00
2023-10-03 16:09:10 +02:00
jobs:
2023-10-14 14:49:13 +02:00
checkout:
2023-10-03 18:46:26 +02:00
runs-on: ubuntu-latest
steps:
2023-10-14 14:46:22 +02:00
- name: check out repo
uses: actions/checkout@v3
2023-10-14 16:13:07 +02:00
- name: list files
run: ls
2023-10-14 16:14:27 +02:00
run: pwd
2023-10-14 15:31:47 +02:00
- name: compile
uses: xu-cheng/texlive-action@v2
with:
docker_image: aergus/latex
run: |
2023-10-14 16:14:27 +02:00
ls
pwd
2023-10-14 15:31:47 +02:00
latexmk main.tex
2023-10-14 15:17:06 +02:00
- name: upload
uses: actions/upload-artifact@v3
with:
name: artifact.tex
path: main.tex