Skip to content

Build Code

Build Code #16

Workflow file for this run

name: Build
run-name: Build Code
on:
push:
branches: ['main']
permissions:
contents: write
concurrency:
group: "build"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Build App
run: |
npm ci
npm run build
cd .vitepress/dist
touch .nojekyll
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: .vitepress/dist # The folder the action should deploy.