Skip to content

Deploy Docs

Deploy Docs #2

Workflow file for this run

name: Deploy Docs
on:
push:
branches:
- main
paths:
- 'website/**'
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Hugo
uses: peaceiris/actions-hugo@v3
with:
hugo-version: '0.155.3'
extended: true
- name: Build
working-directory: website
run: hugo --minify
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: website/public
deploy:
runs-on: ubuntu-latest
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4