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:
|
|
|
|
Explore-Gitea-Actions:
|
2023-10-03 18:46:26 +02:00
|
|
|
runs-on: ubuntu-latest
|
2023-10-03 16:09:10 +02:00
|
|
|
steps:
|
2023-10-03 16:59:00 +02:00
|
|
|
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
|
|
|
|
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
|
|
|
|
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
|
|
|
|
- name: Check out repository code
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
|
|
|
|
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
|
|
|
|
- name: List files in the repository
|
|
|
|
run: |
|
|
|
|
ls ${{ gitea.workspace }}
|
|
|
|
- run: echo "🍏 This job's status is ${{ job.status }}."
|
2023-10-03 20:00:49 +02:00
|
|
|
build_latex:
|
2023-10-03 18:46:26 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-10-03 20:00:49 +02:00
|
|
|
- name: Set up Git repository
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Compile LaTeX document
|
2023-10-03 18:46:26 +02:00
|
|
|
uses: xu-cheng/latex-action@v3
|
|
|
|
with:
|
2023-10-03 20:00:49 +02:00
|
|
|
root_file: main.tex
|