-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (35 loc) · 1.03 KB
/
w4h-workflow.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Convert Markdown to HTML
on:
push:
branches:
- main
paths:
- '**/*.md'
workflow_dispatch:
jobs:
convert:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Pandoc
run: |
sudo apt-get update
sudo apt-get install -y pandoc
- name: Convert Markdown to HTML
run: |
mkdir -p html
find . -name '*.md' | while read -r file; do
htmlfile="html/${file%.md}.html"
pandoc "$file" -o "$htmlfile" && echo "Converted $file to $htmlfile"
done
- name: Commit HTML files
if: success()
run: |
git config --local user.name 'github-actions[bot]'
git config --local user.email 'github-actions[bot]@users.noreply.github.com'
git add html/*
git commit -m 'Automatically convert MD to HTML'
git push
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}