We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 495525a + bdaedbf commit 06de7e5Copy full SHA for 06de7e5
2 files changed
.github/workflows/deploy-production.yml .github/workflows/deploy-development.yml.github/workflows/deploy-production.yml renamed to .github/workflows/deploy-development.yml
@@ -1,4 +1,4 @@
1
-name: Deploy to Production
+name: Deploy to Development
2
3
on:
4
push:
@@ -30,15 +30,10 @@ jobs:
30
cd backend
31
npm test
32
33
- - name: Run CDK tests
34
- run: |
35
- cd backend
36
- npm run test:cdk
37
-
38
deploy:
39
needs: test
40
runs-on: ubuntu-latest
41
- environment: production
+ environment: development
42
43
steps:
44
- uses: actions/checkout@v4
@@ -68,9 +63,9 @@ jobs:
68
63
- name: Deploy to AWS
69
64
run: |
70
65
71
- npm run cdk deploy -- \
66
+ npm run cdk deploy ai-team-medical-reports-stack-development -- \
72
67
--require-approval never \
73
- --context environment=production
+ --context environment=development
74
env:
75
CDK_DEFAULT_ACCOUNT: ${{ secrets.AWS_ACCOUNT_ID }}
76
CDK_DEFAULT_REGION: us-east-1
.github/workflows/deploy-staging.yml
0 commit comments