Datenschutzerklaerung_Nutzu.../.gitea/workflows/pandoc.yaml

21 lines
828 B
YAML
Raw Normal View History

2024-09-13 13:09:52 +00:00
name: Create HTML
run-name: {{ gitea.actor }} published new files
2024-09-13 13:06:01 +00:00
on: [push]
jobs:
2024-09-13 13:09:52 +00:00
pandoc-the-markdown:
runs: [self-hosted, linux, x64, gpu]
2024-09-13 13:06:01 +00:00
steps:
2024-09-13 13:09:52 +00: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 }}."
2024-09-13 13:06:01 +00:00
- name: Check out repository code
uses: actions/checkout@v4
2024-09-13 13:09:52 +00:00
- name: Iterate over all Markdown files to generate HTML
2024-09-13 13:06:01 +00:00
run: |
2024-09-13 13:09:52 +00:00
for markdown in *md
do
pandoc --embed-resources --standalone --css pandoc.css -o "${markdown}.html" "${markdown}"
done
2024-09-13 13:11:00 +00:00
- run: echo "This job's status is ${{ job.status }}."