Skip to content

again 4

again 4 #10

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
env:
PUBLIC_ANALYTICS_SCRIPT_URL: ${{ vars.PUBLIC_ANALYTICS_SCRIPT_URL }}
PUBLIC_ANALYTICS_WEBSITE_ID: ${{ vars.PUBLIC_ANALYTICS_WEBSITE_ID }}
steps:
- uses: actions/checkout@v4
- run: echo "PUBLIC_ANALYTICS_SCRIPT_URL=$PUBLIC_ANALYTICS_SCRIPT_URL"
- run: echo "PUBLIC_ANALYTICS_WEBSITE_ID=$PUBLIC_ANALYTICS_WEBSITE_ID"
- 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