Skip to content

Commit

Permalink
Bump env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
cheran-senthil committed Dec 5, 2024
1 parent c3b6eeb commit 4909f51
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ parameters:
ENVIRONMENT:
type: string
default: "default"
enum: ["default", "development", "staging", "sepolia-staging"]
enum: ["default", "development", "testnet-sepolia", "testnet-sepolia-staging"]
ENVIRONMENT_VARIABLES:
type: string
default: ""
Expand Down Expand Up @@ -215,9 +215,9 @@ jobs:
if [ "<< pipeline.parameters.ENVIRONMENT >>" == "development" ]; then
S3_BUCKET_NAME=$AWS_S3_USER_UPLOADS_BUCKET_NAME_DEV
elif [ "<< pipeline.parameters.ENVIRONMENT >>" == "staging" ]; then
elif [ "<< pipeline.parameters.ENVIRONMENT >>" == "testnet-sepolia" ]; then
S3_BUCKET_NAME=$AWS_S3_USER_UPLOADS_BUCKET_NAME_SEPOLIA
elif [ "<< pipeline.parameters.ENVIRONMENT >>" == "staging-sepolia" ]; then
elif [ "<< pipeline.parameters.ENVIRONMENT >>" == "testnet-sepolia-staging" ]; then
S3_BUCKET_NAME=$AWS_S3_USER_UPLOADS_BUCKET_NAME_SEPOLIA_STAGING
else
echo "Invalid / default environment specified."
Expand Down

0 comments on commit 4909f51

Please sign in to comment.