Skip to content

Build

Build #2

Workflow file for this run

name: Build
on: workflow_dispatch
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/[email protected]
- uses: actions/setup-node@v2
with:
node-version: '16'
# Build
- name: Install dependencies
run: npm i
- name: Build
run: npm run build
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
branch: build
folder: build
clean: true