mirror of
https://github.com/ryan4yin/nixos-and-flakes-book
synced 2024-11-10 06:44:14 +00:00
36 lines
1 KiB
YAML
36 lines
1 KiB
YAML
|
name: Deploy
|
||
|
on:
|
||
|
workflow_dispatch: {}
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
jobs:
|
||
|
deploy:
|
||
|
runs-on: ubuntu-latest
|
||
|
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
|
||
|
permissions:
|
||
|
pages: write # to deploy to Pages
|
||
|
id-token: write # to verify the deployment originates from an appropriate source
|
||
|
# Deploy to the github-pages environment
|
||
|
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: 18
|
||
|
cache: npm
|
||
|
- run: npm ci
|
||
|
- name: Build
|
||
|
run: npm run docs:build
|
||
|
- uses: actions/configure-pages@v2
|
||
|
- uses: actions/upload-pages-artifact@v1
|
||
|
with:
|
||
|
path: docs/.vitepress/dist
|
||
|
- name: Deploy to GitHub Pages
|
||
|
id: deployment
|
||
|
uses: actions/deploy-pages@v2 # or the latest "vX.X.X" version tag for this action
|