Skip to content

feat: add Auth HI! documentation site with Nextra #1

feat: add Auth HI! documentation site with Nextra

feat: add Auth HI! documentation site with Nextra #1

Workflow file for this run

name: Deploy Docs to GitHub Pages

Check failure on line 1 in .github/workflows/deploy-docs.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy-docs.yml

Invalid workflow file

(Line: 63, Col: 15): Expected format {org}/{repo}[/path]@ref. Actual 'deploy-pages@v4'
on:
push:
branches:
- main
paths:
- 'docs/**'
- '.github/workflows/deploy-docs.yml'
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@v6
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 22
cache: 'pnpm'
cache-dependency-path: 'docs/pnpm-lock.yaml'
- name: Install dependencies
working-directory: docs
run: pnpm install
- name: Build
working-directory: docs
run: pnpm build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs/out
deploy:
runs-on: ubuntu-latest
needs: build
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: deploy-pages@v4