Skip to content

Build documentation with Sphinx and deploy to GitHub Pages #1

Build documentation with Sphinx and deploy to GitHub Pages

Build documentation with Sphinx and deploy to GitHub Pages #1

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- main
paths:
- '.github/workflows/pages.yml'
- 'docs/**'
pull_request:
branches:
- main
paths:
- '.github/workflows/pages.yml'
- 'docs/**'
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
name: Build Pages
runs-on: ubuntu-latest
defaults:
run:
working-directory: docs
steps:
- name: Install dependencies
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1'
bundler-cache: true
cache-version: 0
working-directory: '${{ github.workspace }}/docs'
- name: Initialize repository
uses: actions/checkout@v4
- name: Configure Pages
id: pages
uses: actions/configure-pages@v3
- name: Build with Jekyll
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
env:
JEKYLL_ENV: production
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: "docs/_site/"
deploy:
name: Deploy Pages
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy Pages
id: deployment
uses: actions/deploy-pages@v2