Skip to content

ci: add PR build gate via reusable workflow (#171) #129

ci: add PR build gate via reusable workflow (#171)

ci: add PR build gate via reusable workflow (#171) #129

Workflow file for this run

# Deploy the Hugo site to GitHub Pages on push to main.
# The build is delegated to the reusable build.yaml (same steps and validation
# as the PR gate) so the two never drift; this workflow only adds deployment.
name: Deploy Hugo site to Pages
on:
# Runs on pushes targeting the default branch
push:
branches: ['main']
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: 'pages'
cancel-in-progress: false
jobs:
# Build job — reuses the shared build workflow and uploads the Pages artifact.
build:
permissions:
contents: read
pages: write
id-token: write
uses: ./.github/workflows/build.yaml
with:
upload-pages-artifact: true
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
permissions:
pages: write
id-token: write
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v5