Skip to content

Commit f903e54

Browse files
committed
👷 Fix CI
1 parent ea087d1 commit f903e54

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/pages.yml

+6-7
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Deploy static content to Pages
33

44
on:
55
push:
6-
branches: ["main"]
6+
branches: ["main", "pages"]
77

88
workflow_dispatch:
99

@@ -25,18 +25,17 @@ jobs:
2525
steps:
2626
- name: Checkout
2727
uses: actions/checkout@v4
28-
- name: Asciidoc
29-
uses: cazziwork/[email protected]
30-
with:
31-
src: en.adoc
32-
dest: target/public
28+
- name: Build pages
29+
run: |
30+
apt get -y po4a make asciidoctor
31+
make
3332
- name: Setup Pages
3433
uses: actions/configure-pages@v5
3534
- name: Upload artifact
3635
uses: actions/upload-pages-artifact@v3
3736
with:
3837
# Upload entire repository
39-
path: 'target/public/'
38+
path: "target/public/"
4039
- name: Deploy to GitHub Pages
4140
id: deployment
4241
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)