name: Gitea Actions Demo run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 on: [push] jobs: checkout: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: compile run: | pdflatex main.tex - name: Prepare pages run: | mkdir public mv main.pdf main.log public - name: Deploy to pages uses: actions/pages@v1 with: index-title: 'Just a CI test'