Skip to content

Update deps

Update deps #107

Workflow file for this run

name: Deploy to GitHub-Pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Check Out
uses: actions/[email protected]
with:
persist-credentials: false
- name: Setup Node
uses: actions/[email protected]
with:
node-version: 20
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Installing Dependencies
run: pnpm i
- name: Building
run: npm run build
- name: Deploy
uses: JamesIves/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
folder: ./build
branch: gh-pages