Skip to content

Build Web

Build Web #30

Workflow file for this run

name: Build Web
on:
workflow_dispatch:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: "20.x"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build
run: yarn run build:browser
- name: Deploy
uses: JamesIves/github-pages-deploy-action@4.1.5
with:
branch: gh-pages # The branch the action should deploy to.
folder: out/renderer # The folder the action should deploy.