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

27 lines
1.0 KiB
YAML
Raw Normal View History

2024-09-13 13:40:09 +00:00
name: Create HTML
2024-09-13 13:42:14 +00:00
run-name: ${{ gitea.actor }} published new files
2024-09-13 13:06:01 +00:00
on: [push]
2024-09-13 13:33:58 +00:00
jobs:
2024-09-13 13:42:14 +00:00
pandoc-the-markdown:
2024-09-20 14:32:16 +00:00
runs-on: self-hosted
2024-09-13 13:33:58 +00:00
steps:
2024-09-13 13:42:14 +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 }}."
- name: Check out repository code
uses: actions/checkout@v4
- name: Iterate over all Markdown files to generate HTML
run: |
for markdown in *md
do
pandoc --self-contained --standalone --css wmde.css -o "${markdown}.html" "${markdown}"
2024-09-13 13:42:14 +00:00
done
2024-09-24 13:32:43 +00:00
- uses: actions/upload-artifact@v4
with:
name: Deployment
path: |
DatenschutzerklrungfrdieNutzungsforschungbeiW.md.html
PrivacypolicylistofparticipantsusageresearchW.md.html
2024-09-13 13:42:14 +00:00
- run: echo "This job's status is ${{ job.status }}."