video understanding
Some checks failed
Build and Deploy / build (push) Failing after 2m17s
Build and Deploy / docker-build (push) Has been skipped
Deploy to Server / deploy (push) Successful in 43s

This commit is contained in:
2026-04-29 11:50:44 -05:00
parent 5bf0622c38
commit 193a825899
14 changed files with 1435 additions and 15 deletions

View File

@@ -0,0 +1,34 @@
name: Build and Deploy
on:
push:
branches:
- recipeGen
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Build the app
run: npm run build
docker-build:
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Build Docker image
run: docker build -t recipe-generator:latest .