Skip to content

ci: docs deployment test #4

ci: docs deployment test

ci: docs deployment test #4

Workflow file for this run

name: Deploy docs to GitHub Pages
on:
push:
branches: [docs-site]
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: withastro/action@v3
with:
path: ./docs
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/deploy-pages@v4