Max Richter
0fd743f3f1
Some checks failed
Deploy to GitHub Pages / build_site (push) Failing after 2m39s
26 lines
526 B
YAML
26 lines
526 B
YAML
name: Deploy to GitHub Pages
|
|
|
|
on:
|
|
push:
|
|
branches: 'main'
|
|
|
|
jobs:
|
|
build_site:
|
|
runs-on: ubuntu-latest
|
|
container: jimfx/nodes:latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install
|
|
|
|
- name: build
|
|
run: pnpm run build
|
|
|
|
- name: Upload Artifacts
|
|
uses: actions/upload-pages-artifact@v3
|
|
with:
|
|
# this should match the `pages` option in your adapter-static options
|
|
path: 'app/build/'
|