We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7526abc commit 1382cd0Copy full SHA for 1382cd0
.github/workflows/_release.yml
@@ -196,8 +196,11 @@ jobs:
196
unset AWS_ACCESS_KEY_ID
197
unset AWS_SECRET_ACCESS_KEY
198
unset AWS_REGION
199
+ unset AWS_DEFAULT_REGION
200
# Verify they are removed
201
if [ -z "$AWS_ACCESS_KEY_ID" ]; then echo "AWS_ACCESS_KEY_ID is unset"; else echo "AWS_ACCESS_KEY_ID is still set"; fi
202
+ if [ -z "$AWS_REGION" ]; then echo "AWS_REGION is unset"; else echo "AWS_REGION is still set"; fi
203
+ if [ -z "$AWS_DEFAULT_REGION" ]; then echo "AWS_DEFAULT_REGION is unset"; else echo "AWS_DEFAULT_REGION is still set"; fi
204
205
make tests
206
working-directory: ${{ inputs.working-directory }}
0 commit comments