Skip to content

Reworks UI (#26)

Reworks UI (#26) #49

Workflow file for this run

name: App Build and Deploy
on:
push:
branches:
- dev
permissions:
contents: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Install and Build
run: |
cd app
pnpm i
pnpm build
env:
CI: ""
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: app/dist # The folder the action should deploy.