Skip to content

Fix the deploy with specified dist folder #4

Fix the deploy with specified dist folder

Fix the deploy with specified dist folder #4

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '20'
- name: Install dependencies
run: npm ci
working-directory: app
- name: Run deploy script
run: npm run deploy
working-directory: app