Skip to content

Commit f5f2757

Browse files
committed
adding param management scripting
1 parent a30a0ce commit f5f2757

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/dev_branch_deploy_images.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,15 @@ jobs:
129129
--set image.tag="latest"
130130
popd
131131
132+
- name: Save ENV vars and secrets to AWS Param Store
133+
if: ${{ success() }}
134+
run: |
135+
# wait for the secrets and env vars to be available
136+
sleep 20
137+
source ./scripts/lambdaParamStoreUpdatesDev.sh -g
138+
echo DIFF=$DIFF
139+
echo "ENV_DIFF=$DIFF" >> $GITHUB_ENV
140+
132141
- name: Deploy api-lambda from latest image tag
133142
run: |
134143
set -euo pipefail
@@ -159,3 +168,4 @@ jobs:
159168
--name latest \
160169
--function-version "$VERSION" > /dev/null 2>&1
161170
171+

0 commit comments

Comments
 (0)