Hooking up Jody with the good shit
Some checks failed
Deploy Jody's App / build-and-deploy (push) Failing after 18s

This commit is contained in:
Ben Mosley
2026-01-07 20:18:47 -06:00
parent 594aa96dc7
commit 6f7efed5e5

View File

@@ -0,0 +1,23 @@
name: Deploy Jody's App
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: vps-host
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install and Build
run: |
npm install
npm run build
- name: Sync Files
run: |
# This clears the old version and puts the new one in
rm -rf /var/www/jody/dist
cp -r dist /var/www/jody/