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