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 6f818a1 commit e27cd45Copy full SHA for e27cd45
.github/workflows/run-e2e-tests.yml
@@ -66,9 +66,10 @@ jobs:
66
id: round-robin-region
67
run: |
68
regions_available=(eu-west-1 us-east-1)
69
- region=${regions_available[$((RANDOM % ${#regions[@]}))]}
+ region=${regions_available[$((RANDOM % ${#regions_available[@]}))]}
70
# Set the region as an output variable
71
echo "region=$region" >> $GITHUB_OUTPUT
72
+ echo "deployment_region=$region"
73
- name: Setup AWS credentials
74
uses: aws-actions/configure-aws-credentials@ececac1a45f3b08a01d2dd070d28d111c5fe6722 # v4.1.0
75
with:
0 commit comments