ci-test/.gitea/workflows/demo.yaml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 13: mapping key "run" already defined at line 12
2023-10-14 16:14:27 +02:00

27 lines
598 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
run: 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