Skip to content

Merge branch 'master' of https://github.com/AttorneyOnline/webAO #430

Merge branch 'master' of https://github.com/AttorneyOnline/webAO

Merge branch 'master' of https://github.com/AttorneyOnline/webAO #430

Workflow file for this run

name: Deploy CI
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '14'
cache: 'npm'
- name: Install Dependencies
run: npm install
- name: Build Project
run: npm run build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.6.8
with:
branch: gh-pages # The branch the action should deploy to.
folder: dist # The folder the action should deploy.