From 22e63112537a4724b354217402ee314d69c78ab7 Mon Sep 17 00:00:00 2001 From: Moray Grieve Date: Fri, 29 Sep 2023 09:15:38 +0100 Subject: [PATCH] Update for erpc address --- .github/workflows/manual-deploy-testnet-faucet.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/manual-deploy-testnet-faucet.yml b/.github/workflows/manual-deploy-testnet-faucet.yml index 7548006595..467b2ea64c 100644 --- a/.github/workflows/manual-deploy-testnet-faucet.yml +++ b/.github/workflows/manual-deploy-testnet-faucet.yml @@ -44,13 +44,13 @@ jobs: if: ${{ inputs.testnet_type == 'testnet' }} run: | echo "FAUCET_BUILD_TAG=testnetobscuronet.azurecr.io/obscuronet/faucet_testnet:latest" >> $GITHUB_ENV - echo "TESTNET_ADDR=testnet.obscu.ro" >> $GITHUB_ENV + echo "TESTNET_ADDR=erpc.testnet.obscu.ro" >> $GITHUB_ENV - name: 'Sets env vars for dev-testnet' if: ${{ inputs.testnet_type == 'dev-testnet' }} run: | echo "FAUCET_BUILD_TAG=testnetobscuronet.azurecr.io/obscuronet/dev_faucet_testnet:latest" >> $GITHUB_ENV - echo "TESTNET_ADDR=dev-testnet.obscu.ro" >> $GITHUB_ENV + echo "TESTNET_ADDR=erpc.testnet.obscu.ro" >> $GITHUB_ENV - name: 'Login to Azure docker registry' uses: azure/docker-login@v1