File tree Expand file tree Collapse file tree 2 files changed +44
-0
lines changed
Expand file tree Collapse file tree 2 files changed +44
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Deploy React to GitHub Pages
2+
3+ on :
4+ push :
5+ branches : [main]
6+
7+ permissions :
8+ contents : write
9+ pages : write
10+ id-token : write
11+
12+ jobs :
13+ build :
14+ runs-on : ubuntu-latest
15+ steps :
16+ - name : Checkout source
17+ uses : actions/checkout@v4
18+
19+ - name : Setup Node
20+ uses : actions/setup-node@v4
21+ with :
22+ node-version : 18
23+
24+ - name : Install deps & Build
25+ run : |
26+ npm ci
27+ npm run build
28+
29+ - name : Deploy to GitHub Pages
30+ uses : actions/upload-pages-artifact@v3
31+ with :
32+ path : ./build
33+
34+ deploy :
35+ needs : build
36+ runs-on : ubuntu-latest
37+ environment :
38+ name : github-pages
39+ url : ${{ steps.deployment.outputs.page_url }}
40+
41+ steps :
42+ - name : Deploy to GitHub Pages
43+ uses : actions/deploy-pages@v4
Original file line number Diff line number Diff line change 22
33> AI-powered cooking assistant that detects ingredients from images and generates personalized recipes
44
5+ > Click here to view [ demo] ( https://lockman04.github.io/SavoryAI/ )
56## Features
67
78### 🔍 Smart Ingredient Detection
You can’t perform that action at this time.
0 commit comments