ci-test/.gitea/workflows/demo.yaml
Maximilian Keßler c7fe20acc8
All checks were successful
Gitea Actions Demo / checkout (push) Successful in 19s
change tag
2023-10-17 16:19:03 +02:00

23 lines
533 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: compile
run: |
pdflatex main.tex
- name: prepare pages
run: |
mkdir public2
mv main.pdf main.log public2
- uses: actions/pages@v1
with:
directory: public2
index-title: 'Just a CI test'
index: false