Skip to content

Commit

Permalink
scripts: add staging support
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianFranzen committed Feb 27, 2025
1 parent e11ac97 commit 3b2e317
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions scripts/build_docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,21 @@ case "${environment}" in
profile=mainnet
features=default
;;
staging)
profile=testnet
features=develop
;;
testnet)
profile=testnet
features=testnet
;;
develop)
profile=testnet
features=develop
features=testnet,develop
;;
*)
echo >&2 "ERROR - unsupported environment: ${1}"
echo >&2 " - options: mainnet testnet develop"
echo >&2 " - options: mainnet staging testnet develop"
echo >&2 " - default: develop"
exit 1
;;
Expand Down

0 comments on commit 3b2e317

Please sign in to comment.