-
Notifications
You must be signed in to change notification settings - Fork 0
69 lines (57 loc) · 1.82 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: CI/CD Pipeline
on:
push:
branches:
- deploy # Adjust to your primary branch
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js for Frontend
uses: actions/setup-node@v2
with:
node-version: '20.17.0' # Specify your Node.js version
- name: Install Frontend Dependencies
run: |
cd frontend
npm install
- name: Build Frontend
run: |
cd frontend
npm run build # Adjust if necessary
# - name: Set up Java for Backend
# uses: actions/setup-java@v2
# with:
# java-version: '22.0.2' # Specify your Java version
# - name: Build Backend
# run: |
# cd backend
# mvn package # Use ./gradlew build for Gradle
deploy:
runs-on: ubuntu-latest
needs: build # Ensure build job completes before deploying
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Deploy Frontend to Heroku
env:
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
run: |
cd frontend
git init
heroku git:remote -a jetedge-test
git add .
git commit -m "Deploying Frontend" || echo "No changes to commit"
git push heroku main --force # Use --force for initial deployment
# - name: Deploy Backend to Heroku
# env:
# HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
# run: |
# cd backend
# git init
# heroku git:remote -a ${{ secrets.HEROKU_BACKEND_APP_NAME }}
# git add .
# git commit -m "Deploying Backend" || echo "No changes to commit"
# git push heroku main --force # Use --force for initial deployment