Skip to content

add fstab instruction for internal drives #25

add fstab instruction for internal drives

add fstab instruction for internal drives #25

Workflow file for this run

name: Vitepress CI
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- run: npm ci
- run: npx vitepress build src
- uses: actions/upload-pages-artifact@v3
with:
path: src/.vitepress/dist
retention-days: 3
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 | GitHub Pages
id: deployment
uses: actions/deploy-pages@v4