-
Notifications
You must be signed in to change notification settings - Fork 3
54 lines (44 loc) · 1.56 KB
/
sandbox.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
54
# Reset to the latest file code in the develop branch before merging to develop
# Clean up your `Casimir${Stack}${Stage}` stacks from the AWS CloudFormation console after use
# If you want to use a different branch or stage name (not sandbox), edit line 7 or 11 accordingly
name: Push
on:
push:
branches: [sandbox] # Replace with your branch name
env:
PROJECT: casimir
STAGE: sandbox # Replace with your stage name
AWS_REGION: us-east-2
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
# Skip any pushes with commit flag "(skip deploy)"
# Comment out for testing
if: ${{ !contains(github.event.head_commit.message, "(skip deploy)") }}
steps:
- name: Checkout the repo with submodules
uses: actions/checkout@v3
with:
submodules: "recursive"
- name: Setup Node.js LTS
uses: actions/setup-node@v4
with:
node-version: "lts/*"
- 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: ${{ env.AWS_REGION }}
- name: Install action dependencies
run: |
curl -sSf https://atlasgo.sh | sh
- name: Install and build all package dependencies
run: npm ci
env:
PUBLIC_STAGE: ${{ env.STAGE }}
- name: Deploy CDK infrastructure
run: npm run deploy:cdk
- name: Migrate users database
run: npm run migrations:users