membership-application/.gitea/workflows/action.yml

54 lines
1.2 KiB
YAML
Raw Normal View History

2024-02-26 11:23:24 +01:00
name: Compile LaTeX document
on:
push:
branches:
- main # or any other branch you want to trigger the workflow
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
container:
2024-02-26 11:27:33 +01:00
image: leplusorg/latex
2024-02-26 11:23:24 +01:00
2024-02-26 11:38:18 +01:00
2024-02-26 11:23:24 +01:00
steps:
2024-02-26 11:38:18 +01:00
- name: "Determine prerequisites"
id: prereq
run: |
echo "need_node=$(command -v node >/dev/null 2>&1 && echo 0 || echo 1)" >> $GITHUB_OUTPUT
- name: Install node
if: ${{ steps.prereq.outputs.need_node == '1' }}
run: |
2024-02-26 11:40:00 +01:00
apt update -y && apt install -y curl
2024-02-26 11:38:18 +01:00
curl -sS https://webi.sh/node | sh
echo ~/.local/opt/node/bin >> $GITHUB_PATH
2024-02-26 12:04:58 +01:00
- uses: actions/checkout@v3
2024-02-26 11:23:24 +01:00
with:
fetch-depth: 0
- name: Compile LaTeX Document
2024-02-26 11:46:48 +01:00
run: latexmk -pdf ${{ env.root_file }}
2024-02-26 11:23:24 +01:00
env:
root_file: main.tex # Replace 'main.tex' with the path to your main LaTeX file
2024-02-26 12:14:30 +01:00
- name: Upload artifacts and release assets
2024-02-26 12:15:55 +01:00
uses: nanoufo/action-upload-artifacts-and-release-assets@v1.9
2024-02-26 11:23:24 +01:00
with:
2024-02-26 12:14:30 +01:00
path: |
./main.pdf
# - name: Upload PDF
# uses: actions/upload-artifact@v3
# with:
# name: Beitrittserklaerung_RudernDonauLinz.pdf
# path: ./main.pdf
2024-02-26 11:23:24 +01:00