Skip to content

chore: Deploy workflow #4

chore: Deploy workflow

chore: Deploy workflow #4

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [main]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install deps
run: npm install
- name: Build website
run: npm run build
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: website
path: ./dist