Skip to content

Commit

Permalink
ci: add staging-preprod CI deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
gytis-ivaskevicius committed Mar 28, 2024
1 parent 23cb32b commit a5bd334
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/std.yml
Expand Up @@ -13,6 +13,11 @@ on:
type: boolean
required: true
default: false
deploy-staging-preprod:
description: Deploy to staging-preprod
type: boolean
required: true
default: false
deploy-dev-mainnet:
description: Deploy to dev-mainnet
type: boolean
Expand All @@ -23,6 +28,9 @@ on:
deploy-dev-preprod:
type: boolean
required: true
deploy-staging-preprod:
type: boolean
required: true
deploy-dev-mainnet:
type: boolean
required: true
Expand Down Expand Up @@ -96,6 +104,9 @@ jobs:
if [ "true" == ${{ inputs.deploy-dev-preprod || false }} ] ; then
echo '{"environment":"dev-preprod", "target":"dev-preprod@us-east-1@v2", "url": "https://dev-preprod.lw.iog.io/"}'
fi
if [ "true" == ${{ inputs.deploy-staging-preprod || false }} ] ; then
echo '{"environment":"dev-preprod", "target":"staging-preprod@us-east-1@v2", "url": "https://staging-preprod.lw.iog.io/"}'
fi
if [ "true" == ${{ inputs.deploy-dev-mainnet || false }} ] ; then
echo '{"environment":"dev-mainnet", "target":"dev-mainnet@us-east-1", "url": "https://dev-mainnet.lw.iog.io/"}'
fi
Expand Down

0 comments on commit a5bd334

Please sign in to comment.