mirror of
https://github.com/andatoshiki/toshiki-notebook.git
synced 2026-06-06 01:16:27 +00:00
35 lines
1.0 KiB
YAML
35 lines
1.0 KiB
YAML
name: ✅ Build and Deploy Vitepress Doc Pages to GitHub Pages
|
|
on:
|
|
workflow_dispatch: {}
|
|
push:
|
|
branches:
|
|
- master
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
pages: write
|
|
id-token: write
|
|
environment:
|
|
name: github-pages
|
|
url: ${{ steps.deployment.outputs.page_url }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 16
|
|
cache: yarn
|
|
- name: ⚒️ Install dependencies
|
|
run: yarn install --frozen-lockfile
|
|
- name: ☕ Build dtatic pages
|
|
run: yarn docs:build
|
|
- uses: actions/configure-pages@v2
|
|
- uses: actions/upload-pages-artifact@v1
|
|
with:
|
|
path: ./dist
|
|
- name: 🪗 Deploy to GitHub pages
|
|
id: deployment
|
|
uses: actions/deploy-pages@v1
|