-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (50 loc) · 1.56 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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: List files for debugging
run: |
echo "Listing all Markdown files:"
find . -name '*.md'
echo "Current directory structure:"
ls -R
- name: Convert Markdown to HTML
run: |
find . -name '*.md' | while read -r file; do
htmlfile="${file%.md}.html"
echo "Converting $file to $htmlfile"
pandoc "$file" -o "$htmlfile" --extract-media .
if [ $? -eq 0 ]; then
echo "Successfully converted $file"
else
echo "Failed to convert $file"
echo "Attempting to debug file: $file"
ls -l "$file"
echo "Current directory structure at failure point:"
ls -R
fi
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 }}