Skip to content

fix: example code in Speculative Generality (#5) #26

fix: example code in Speculative Generality (#5)

fix: example code in Speculative Generality (#5) #26

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Build and deploy
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
- uses: pnpm/[email protected]
with:
version: 7.17.1
run_install: true
- name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built.
run: |
pnpm run docs:build
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: ./docs/.vitepress/dist # The folder the action should deploy.