-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (37 loc) · 966 Bytes
/
deploy.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
name: Fronted CI/CD
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "20"
- name: Install dependencies for frontend
run: |
npm install
deploy:
runs-on: ubuntu-latest
needs: [build]
if: success()
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Elastic Beanstalk Deployment
uses: kumarshivam12/[email protected]
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_KEY }}
EB-BUCKET-NAME: social-network-test
APPLICATION-NAME: social-network
EB-ENV-NAME: test
AWS-REGION: us-east-2