Skip to content

updated more dependencies #16

updated more dependencies

updated more dependencies #16

Workflow file for this run

name: Build Website
on:
push:
branches:
- main
jobs:
install:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '18.x'
- name: Install dependencies
run: node --version
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9.4.0
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build site
run: pnpm build && pnpm export
- name: Deploy to netlify
uses: netlify/actions/cli@master
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
with:
args: deploy --dir=out --prod