-
Notifications
You must be signed in to change notification settings - Fork 13
37 lines (31 loc) · 1.13 KB
/
deploy-to-s3.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
name: Prepare and Deploy master
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@master
- name: Run npm install
run: npm install
- name: Run npm build
run: npm run build
env:
NODE_ENV: 'production'
PUBLIC_URL: 'https://staging.zerobase.io'
REACT_APP_API_HOST: 'https://api.staging.zerobase.io'
- name: Run npm install production
run: npm install --production
- name: Upload Compiled Resources to S3
uses: jakejarvis/s3-sync-action@master
with:
args: --acl public-read --follow-symlinks --delete
env:
AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: 'us-east-1'
SOURCE_DIR: 'build'