Update workflow

This commit is contained in:
Soitora 2023-07-19 18:45:27 +02:00
parent 98a8ac5c55
commit ccabfb89ec

View File

@ -7,33 +7,44 @@ on:
- v3-vitepress - v3-vitepress
env: env:
VITE_BUILD: ${{ env.VITE_BUILD }} VITE_BASE: /kodo/
jobs: jobs:
deploy: deploy:
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions: permissions:
contents: read contents: read
pages: write pages: write
id-token: write id-token: write
environment: environment:
name: github-pages name: github-pages
url: ${{ steps.deployment.outputs.page_url }} url: ${{ steps.deployment.outputs.page_url }}
steps: steps:
- uses: actions/checkout@v3 - name: Checkout
uses: actions/checkout@v3
with: with:
fetch-depth: 0 fetch-depth: 0
- uses: actions/setup-node@v3
- name: Setup Node
uses: actions/setup-node@v3
with: with:
node-version: 16 node-version: 16
cache: npm cache: npm
- run: npm ci
- name: Build - name: Install and build
run: npm run docs:build run: npm ci && npm run docs:build
- uses: actions/configure-pages@v2
- uses: actions/upload-pages-artifact@v1 - name: Configure pages
uses: actions/configure-pages@v2
- name: Upload pages artifact
uses: actions/upload-pages-artifact@v1
with: with:
path: src/.vitepress/dist path: src/.vitepress/dist
- name: Deploy - name: Deploy
id: deployment id: deployment
uses: actions/deploy-pages@v1 uses: actions/deploy-pages@v1