Skip to content
This repository has been archived by the owner on Sep 29, 2024. It is now read-only.

i'm dumb - revert svelte-kit build change lolol #5

i'm dumb - revert svelte-kit build change lolol

i'm dumb - revert svelte-kit build change lolol #5

name: Build and Deploy
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'
cache-dependency-path: package-lock.json
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm run build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: build
clean: true