Skip to content

Commit ba70bba

Browse files
committed
fix: Add AWS credentials environment variables for LocalStack tests
- Set AWS_ACCESS_KEY_ID=test for LocalStack authentication - Set AWS_SECRET_ACCESS_KEY=test for LocalStack authentication - Set AWS_DEFAULT_REGION=us-east-1 for AWS SDK configuration - These dummy credentials are required by LocalStack and AWS SDK clients
1 parent 04c2332 commit ba70bba

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/Release-CI.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ jobs:
3535
nuget-token: '${{ secrets.NUGET_API_KEY }}'
3636
# Check if this is a release-packages tag push
3737
is-release: ${{ startsWith(github.ref, 'refs/tags/release-packages') }}
38+
# AWS credentials for LocalStack (dummy values)
39+
AWS_ACCESS_KEY_ID: test
40+
AWS_SECRET_ACCESS_KEY: test
41+
AWS_DEFAULT_REGION: us-east-1
3842

3943
steps:
4044
- name: Step-01 Install GitVersion

0 commit comments

Comments
 (0)