diff --git a/.github/workflows/manual-deploy-obscuro-gateway-database.yml b/.github/workflows/manual-deploy-obscuro-gateway-database.yml index 8ab3b8ebaa..b73b022bcf 100644 --- a/.github/workflows/manual-deploy-obscuro-gateway-database.yml +++ b/.github/workflows/manual-deploy-obscuro-gateway-database.yml @@ -14,6 +14,7 @@ on: options: - 'dev-testnet' - 'testnet' + - 'sepolia-testnet' jobs: build-and-deploy: @@ -41,6 +42,13 @@ jobs: echo "RESOURCE_STARTING_NAME=dev-testnet" >> $GITHUB_ENV echo "RESOURCE_TAG_NAME=obscurogatewaydbdevtestnetlatest" >> $GITHUB_ENV + - name: 'Set Obscuro Gateway variables for sepolia-testnet' + if: ${{ github.event.inputs.testnet_type == 'sepolia-testnet' }} + run: | + echo "OBSCURO_GATEWAY_DB_BUILD_TAG=testnetobscuronet.azurecr.io/obscuronet/obscuro_gateway_mariadb_sepolia_testnet:latest" >> $GITHUB_ENV + echo "RESOURCE_STARTING_NAME=sepolia-testnet" >> $GITHUB_ENV + echo "RESOURCE_TAG_NAME=obscurogatewaydbsepoliatestnetlatest" >> $GITHUB_ENV + - name: 'Login via Azure CLI' uses: azure/login@v1 diff --git a/.github/workflows/manual-deploy-obscuro-gateway.yml b/.github/workflows/manual-deploy-obscuro-gateway.yml index 1bba8a2182..6acb385ca6 100644 --- a/.github/workflows/manual-deploy-obscuro-gateway.yml +++ b/.github/workflows/manual-deploy-obscuro-gateway.yml @@ -14,6 +14,7 @@ on: options: - 'dev-testnet' - 'testnet' + - 'sepolia-testnet' jobs: build-and-deploy: @@ -46,6 +47,13 @@ jobs: echo "RESOURCE_STARTING_NAME=dev-testnet" >> $GITHUB_ENV echo "RESOURCE_TAG_NAME=obscurogatewaydevtestnetlatest" >> $GITHUB_ENV + - name: 'Set Obscuro Gateway variables for sepolia-testnet' + if: ${{ github.event.inputs.testnet_type == 'sepolia-testnet' }} + run: | + echo "OBSCURO_GATEWAY_BUILD_TAG=testnetobscuronet.azurecr.io/obscuronet/obscuro_gateway_sepolia_testnet:latest" >> $GITHUB_ENV + echo "OBSCURO_GATEWAY_NODE_HOST=erpc.sepolia-testnet.obscu.ro" >> $GITHUB_ENV + echo "RESOURCE_STARTING_NAME=sepolia-testnet" >> $GITHUB_ENV + echo "RESOURCE_TAG_NAME=obscurogatewaysepoliatestnetlatest" >> $GITHUB_ENV - name: 'Login to Azure docker registry' uses: azure/docker-login@v1