Maximilian Keßler
a678ed7930
Some checks failed
Gitea Actions Demo / checkout (push) Failing after 28s
27 lines
607 B
YAML
27 lines
607 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: |
|
|
ls
|
|
pwd
|
|
- name: compile
|
|
uses: xu-cheng/texlive-action@v2
|
|
with:
|
|
docker_image: aergus/latex
|
|
run: |
|
|
ls
|
|
pwd
|
|
latexmk main.tex
|
|
- name: upload
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: artifact.tex
|
|
path: main.tex
|