Skip to content

Commit

Permalink
👷 Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
punkstarman committed Mar 1, 2025
1 parent ea087d1 commit f903e54
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Deploy static content to Pages

on:
push:
branches: ["main"]
branches: ["main", "pages"]

workflow_dispatch:

Expand All @@ -25,18 +25,17 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Asciidoc
uses: cazziwork/[email protected]
with:
src: en.adoc
dest: target/public
- name: Build pages
run: |
apt get -y po4a make asciidoctor
make
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload entire repository
path: 'target/public/'
path: "target/public/"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit f903e54

Please sign in to comment.