We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 495525a commit 04620cfCopy full SHA for 04620cf
.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
@@ -70,7 +65,7 @@ jobs:
70
65
71
66
npm run cdk deploy -- \
72
67
--require-approval never \
73
- --context environment=production
68
+ --context environment=development
74
69
env:
75
CDK_DEFAULT_ACCOUNT: ${{ secrets.AWS_ACCOUNT_ID }}
76
CDK_DEFAULT_REGION: us-east-1
.github/workflows/deploy-staging.yml
0 commit comments