Skip to content

Commit

Permalink
Add workflow to build content
Browse files Browse the repository at this point in the history
  • Loading branch information
gnunn1 committed Oct 28, 2024
1 parent 52972c3 commit 4427a6e
Show file tree
Hide file tree
Showing 2 changed files with 92 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: docs

on:
push:
branches:
- main
env:
SITE_DIR: "gh-pages"
jobs:
build_site:
name: "Build site with Antora"
runs-on: [ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: "Generate site using antora site action"
uses: kameshsampath/antora-site-action@master
with:
antora_playbook: site.yml
- name: "Upload generated site"
uses: actions/upload-artifact@@v4
with:
name: site
path: "${{ github.workspace }}/${{ env.SITE_DIR }}"
deploy_site:
runs-on: [ubuntu-latest]
needs: [build_site]
name: "Deploy GitHub Pages"
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Download generated site
uses: actions/download-artifact@v1
with:
name: site
path: "${{ github.workspace }}/${{ env.SITE_DIR }}"
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@3.2.1
with:
# ACCESS_TOKEN: # optional
GITHUB_TOKEN: "${{ github.token}}"
FOLDER: "${{ env.SITE_DIR }}"
BRANCH: "gh-pages"
COMMIT_MESSAGE: "[CI] Publish Documentation for ${{ github.sha }}"
48 changes: 48 additions & 0 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: github pages

on:
workflow_dispatch:
push:
branches: [main]
paths-ignore:
- "README.adoc"
- ".gitignore"

permissions:
pages: write
id-token: write

concurrency:
group: gh-pages
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: configure pages
uses: actions/configure-pages@v5
- name: setup node
uses: actions/setup-node@v4
with:
node-version: 20.13.1
- name: install antora
run: npm install --global @antora/cli@3.1 @antora/site-generator@3.1
- name: antora generate
run: antora generate default-site.yml --stacktrace
- name: upload pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: www
deploy:
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: deploy github pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit 4427a6e

Please sign in to comment.