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
|
2024-09-20 14:42:20 +00:00
|
|
|
pandoc --self-contained --standalone --css pandoc.css -o "${markdown}.html" "${markdown}"
|
2024-09-13 13:42:14 +00:00
|
|
|
done
|
|
|
|
- run: echo "This job's status is ${{ job.status }}."
|