-
Notifications
You must be signed in to change notification settings - Fork 2
53 lines (44 loc) · 1.11 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
name: Deploy Staging Frontend
on:
push:
branches:
- deploy
permissions:
id-token: write
contents: read
jobs:
deploy:
runs-on: ubuntu-latest
strategy:
matrix:
environment:
- stacadmin-eoapirisk-demo
environment: ${{ matrix.environment }}
steps:
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 18
- name: Check out repository code
uses: actions/checkout@v2
- name: Install dependencies
run: yarn install
- name: Build code
env:
CI: ""
REACT_APP_STAC_API: ${{ secrets.STAC_API }}
run: yarn build
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
role-to-assume: ${{ secrets.DEPLOY_ROLE_ARN }}
aws-region: us-west-2
- name: Sync with S3 bucket
env:
BUCKET: ${{ secrets.S3_BUCKET }}
run: |
aws s3 sync \
./build "s3://${BUCKET}" \
--acl public-read \
--follow-symlinks \
--delete