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 e06a5c6 commit 9f69f72Copy full SHA for 9f69f72
.github/workflows/test-deploy-publish.yml
@@ -84,7 +84,7 @@ jobs:
84
run: CGO_ENABLED=0 go build -tags lambda.norpc -ldflags="-s -w" -o bootstrap ./lambda
85
86
- name: CDK Deploy
87
- if: github.ref_name == 'develop' || github.ref_name == 'main'
+ if: github.ref_name == 'develop'
88
env:
89
AWS_REGION: ${{ matrix.region }}
90
ENVIRONMENT: ${{ vars.STAGE }}
@@ -97,7 +97,7 @@ jobs:
97
run: cd cdk && cdk deploy --require-approval never
98
99
- name: Serverless Deploy
100
+ if: github.ref_name == 'main'
101
run: |
102
docker compose run \
103
-e LAMBDA_ROLE=${{ vars.LAMBDA_ROLE }} \
0 commit comments