-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (47 loc) · 1.7 KB
/
main.yaml
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
name: CI/CD Cooking Home Frontend
on:
push:
branches:
- main
# env:
# REACT_APP_EDAMAM_APP_ID: ${{ secrets.REACT_APP_EDAMAM_APP_ID }}
# REACT_APP_EDAMAM_API_KEY: ${{ secrets.REACT_APP_EDAMAM_API_KEY }}
# REACT_APP_BACKEND_SERVER_URL: ${{ secrets.REACT_APP_BACKEND_SERVER_URL }}
jobs:
build:
name: React app build and deploy
runs-on: ubuntu-latest
steps:
- name: Checkout Github Actions
uses: actions/checkout@v3
- name: Cache node modules
uses: actions/cache@v1
with:
path: node_modules
key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-build-
${{ runner.OS }}-
- name: Install dependencies
run: npm install
- name: Build React app
run: |
REACT_APP_EDAMAM_APP_ID=${{ secrets.REACT_APP_EDAMAM_APP_ID }} \
REACT_APP_EDAMAM_API_KEY=${{ secrets.REACT_APP_EDAMAM_API_KEY }} \
REACT_APP_BACKEND_SERVER_URL=${{ secrets.REACT_APP_BACKEND_SERVER_URL }} \
npm run build
env:
CI: false
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ca-central-1
- name: Deploy to S3
run: aws s3 sync build/ s3://cooking-home --delete
- name: CloudFront invalidation
env:
CLOUD_FRONT_ID: ${{ secrets.AWS_CLOUDFRONT_ID}}
run: |
aws cloudfront create-invalidation --distribution-id $CLOUD_FRONT_ID --paths /*