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-03 20:00:49 +02:00
|
|
|
build_latex:
|
2023-10-03 18:46:26 +02:00
|
|
|
runs-on: ubuntu-latest
|
2023-10-14 14:44:30 +02:00
|
|
|
container:
|
|
|
|
image: aergus/latex
|
2023-10-03 18:46:26 +02:00
|
|
|
steps:
|
2023-10-14 14:46:22 +02:00
|
|
|
- name: check out repo
|
|
|
|
uses: actions/checkout@v3
|
2023-10-03 20:00:49 +02:00
|
|
|
- name: Set up Git repository
|
2023-10-14 14:44:30 +02:00
|
|
|
run: latexmk main.tex
|