From 269c3d08343df703f503707df58c802be21043ed Mon Sep 17 00:00:00 2001 From: otherview Date: Mon, 16 Oct 2023 16:12:20 +0100 Subject: [PATCH] Update og namings in the GH --- .../workflows/manual-deploy-obscuro-gateway-database.yml | 8 ++++---- .github/workflows/manual-deploy-obscuro-gateway.yml | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/manual-deploy-obscuro-gateway-database.yml b/.github/workflows/manual-deploy-obscuro-gateway-database.yml index 02cf206c25..f8dff0b827 100644 --- a/.github/workflows/manual-deploy-obscuro-gateway-database.yml +++ b/.github/workflows/manual-deploy-obscuro-gateway-database.yml @@ -32,22 +32,22 @@ jobs: if: ${{ github.event.inputs.testnet_type == 'uat-testnet' }} run: | echo "OBSCURO_GATEWAY_DB_BUILD_TAG=testnetobscuronet.azurecr.io/obscuronet/obscuro_gateway_mariadb_uat_testnet:latest" >> $GITHUB_ENV - echo "RESOURCE_STARTING_NAME=testnet" >> $GITHUB_ENV - echo "RESOURCE_TAG_NAME=obscurogatewaydbtestnetlatest" >> $GITHUB_ENV + echo "RESOURCE_STARTING_NAME=uat-testnet" >> $GITHUB_ENV + echo "RESOURCE_TAG_NAME=obscuro-gateway-db-testnet-latest" >> $GITHUB_ENV - name: 'Set Obscuro Gateway variables for dev-testnet' if: ${{ github.event.inputs.testnet_type == 'dev-testnet' }} run: | echo "OBSCURO_GATEWAY_DB_BUILD_TAG=testnetobscuronet.azurecr.io/obscuronet/obscuro_gateway_mariadb_dev_testnet:latest" >> $GITHUB_ENV echo "RESOURCE_STARTING_NAME=dev-testnet" >> $GITHUB_ENV - echo "RESOURCE_TAG_NAME=obscurogatewaydbdevtestnetlatest" >> $GITHUB_ENV + echo "RESOURCE_TAG_NAME=obscuro-gateway-db-dev-testnet-latest" >> $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 + echo "RESOURCE_TAG_NAME=obscuro-gateway-db-sepolia-testnet-latest" >> $GITHUB_ENV - name: 'Login via Azure CLI' diff --git a/.github/workflows/manual-deploy-obscuro-gateway.yml b/.github/workflows/manual-deploy-obscuro-gateway.yml index efef3be8eb..d94ee70296 100644 --- a/.github/workflows/manual-deploy-obscuro-gateway.yml +++ b/.github/workflows/manual-deploy-obscuro-gateway.yml @@ -37,7 +37,7 @@ jobs: echo "OBSCURO_GATEWAY_BUILD_TAG=testnetobscuronet.azurecr.io/obscuronet/obscuro_gateway_uat_testnet:latest" >> $GITHUB_ENV echo "OBSCURO_GATEWAY_NODE_HOST=erpc.uat-testnet.obscu.ro" >> $GITHUB_ENV echo "RESOURCE_STARTING_NAME=uat-testnet" >> $GITHUB_ENV - echo "RESOURCE_TAG_NAME=obscurogatewayuattestnetlatest" >> $GITHUB_ENV + echo "RESOURCE_TAG_NAME=obscuro-gateway-uat-testnet-latest" >> $GITHUB_ENV - name: 'Set Obscuro Gateway variables for dev-testnet' if: ${{ github.event.inputs.testnet_type == 'dev-testnet' }} @@ -45,7 +45,7 @@ jobs: echo "OBSCURO_GATEWAY_BUILD_TAG=testnetobscuronet.azurecr.io/obscuronet/obscuro_gateway_dev_testnet:latest" >> $GITHUB_ENV echo "OBSCURO_GATEWAY_NODE_HOST=erpc.dev-testnet.obscu.ro" >> $GITHUB_ENV echo "RESOURCE_STARTING_NAME=dev-testnet" >> $GITHUB_ENV - echo "RESOURCE_TAG_NAME=obscurogatewaydevtestnetlatest" >> $GITHUB_ENV + echo "RESOURCE_TAG_NAME=obscuro-gateway-dev-testnet-latest" >> $GITHUB_ENV - name: 'Set Obscuro Gateway variables for sepolia-testnet' if: ${{ github.event.inputs.testnet_type == 'sepolia-testnet' }} @@ -53,7 +53,7 @@ jobs: 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 + echo "RESOURCE_TAG_NAME=obscuro-gateway-sepolia-testnet-latest" >> $GITHUB_ENV - name: 'Login to Azure docker registry' uses: azure/docker-login@v1