Skip to content

Commit 1382cd0

Browse files
authored
infra: unset AWS_DEFAULT_REGION in release pipeline (#443)
Release pipeline is [blocked](https://github.com/langchain-ai/langchain-aws/actions/runs/14117529781/job/39551249220) (this is a guess at a solution).
1 parent 7526abc commit 1382cd0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/_release.yml

+3
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,11 @@ jobs:
196196
unset AWS_ACCESS_KEY_ID
197197
unset AWS_SECRET_ACCESS_KEY
198198
unset AWS_REGION
199+
unset AWS_DEFAULT_REGION
199200
# Verify they are removed
200201
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
201204
202205
make tests
203206
working-directory: ${{ inputs.working-directory }}

0 commit comments

Comments
 (0)