Skip to content

Commit 27eb558

Browse files
committed
Deploy to QA on pushes to main
1 parent 9790931 commit 27eb558

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.github/workflows/deploy-dev.yml renamed to .github/workflows/deploy-qa.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1-
name: Deploy all resources to DEV
2-
run-name: DEV deploy - @${{ github.actor }}
1+
name: Deploy all resources to QA
2+
run-name: QA deploy - @${{ github.actor }}
33

44
on:
55
workflow_dispatch:
66
pull_request:
77
branches:
88
- main
9+
push:
10+
branches:
11+
- main
912

1013
jobs:
1114
test:
@@ -83,8 +86,8 @@ jobs:
8386
concurrency:
8487
group: ${{ github.event.repository.name }}-dev-env
8588
cancel-in-progress: false
86-
environment: "AWS DEV"
87-
name: Deploy to DEV and Run Live Tests
89+
environment: "AWS QA"
90+
name: Deploy to QA and Run Live Tests
8891
needs:
8992
- test
9093
- build

src/api/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
## Deploy to AWS env
1616

1717
1. Get AWS credentials with `aws configure sso`
18-
2. Ensure AWS profile is set to the right account (DEV or PROD).
18+
2. Ensure AWS profile is set to the right account (QA or PROD).
1919
3. Run `make deploy_dev` or `make deploy_prod`.
2020

2121
## Generating JWT token

0 commit comments

Comments
 (0)