Skip to content

Merge pull request #168 from matsn0w/feat/landing-page #1

Merge pull request #168 from matsn0w/feat/landing-page

Merge pull request #168 from matsn0w/feat/landing-page #1

Workflow file for this run

name: Web deployer
on:
push:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [20]
defaults:
run:
working-directory: ./web
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup node env
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm ci
- name: Generate
run: npm run generate
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: ./web/.output/public