Skip to content

docs

docs #296

Workflow file for this run

name: Deploy to GitHub Pages
on:
# Trigger the workflow every time you push to the `main` or `master` branch
# but only if changes occur in the docs/ folder.
push:
branches: [master, main]
paths:
- 'docs/**'
- 'changelog.md'
# Allows you to run this workflow manually from the Actions tab on GitHub.
workflow_dispatch:
# Allow this job to clone the repo and create a page deployment
jobs:
build:
runs-on: ubuntu-24.04-arm
permissions:
contents: read
steps:
- name: Checkout your repository using git
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Install, build, and upload your site
uses: withastro/action@77fad83745446cf039d76af7037b782f1af80749 # v4.1.0
with:
path: ./docs
deploy:
needs: build
runs-on: ubuntu-24.04-arm
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4.0.5