Skip to content

Merge pull request #43 from kaitj/enh/submit-btn-issue #18

Merge pull request #43 from kaitj/enh/submit-btn-issue

Merge pull request #43 from kaitj/enh/submit-btn-issue #18

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install and Build
run: |
cd app
npm ci
npm run build
- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: ./app/build
if: github.event_name == 'push'