-
Notifications
You must be signed in to change notification settings - Fork 2
38 lines (33 loc) · 965 Bytes
/
run-cd.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
name: Continous deploy to dev environment
on:
push:
branches:
- "main"
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
registry-url: https://registry.npmjs.org/
- name: Build
run: |
yarn
yarn build --mode staging
env:
VITE_BACKEND_URL: ${{ secrets.MANAGER_DEV_URL }}
VITE_BACKEND_API_VERSION: api/v1/
- name: Sync to Dev bucket
uses: jakejarvis/[email protected]
with:
args: --follow-symlinks --delete
env:
AWS_S3_BUCKET: "origin-intercom-app-dev"
AWS_ACCESS_KEY_ID: ${{ secrets.S3_AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.S3_AWS_SECRET_ACCESS_KEY }}
AWS_REGION: "eu-north-1"
SOURCE_DIR: "dist/"