Skip to content

Commit

Permalink
ci: docs plan
Browse files Browse the repository at this point in the history
  • Loading branch information
hywax committed Jan 29, 2024
1 parent ff3e817 commit b703acb
Showing 1 changed file with 70 additions and 0 deletions.
70 changes: 70 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
name: Deploy Documentation site to GitHub Pages

on:
push:
paths:
- "docs/**"
- ".github/workflows/docs.yml"
- "*.md"
branches:
- main
workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: pages
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Corepack
run: corepack enable

- name: Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm

- name: Pages
uses: actions/configure-pages@v4

- name: Install dependencies
run: pnpm install

- name: Build with VitePress
run: |
pnpm run docs:build
touch docs/.vitepress/dist/.nojekyll
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
name: github-pages
path: docs/.vitepress/dist

deploy:
name: Deploy
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit b703acb

Please sign in to comment.