diff --git a/.github/workflows/manual-deploy-testnet-l2.yml b/.github/workflows/manual-deploy-testnet-l2.yml index c90a1735de..071f77a555 100644 --- a/.github/workflows/manual-deploy-testnet-l2.yml +++ b/.github/workflows/manual-deploy-testnet-l2.yml @@ -58,17 +58,14 @@ jobs: username: testnetobscuronet password: ${{ secrets.REGISTRY_PASSWORD }} - - name: Debug Env Vars - run: env - - name: 'Build and push obscuro node images' run: | - DOCKER_BUILDKIT=1 docker build -t ${{env.L2_ENCLAVE_DOCKER_BUILD_TAG}} -f dockerfiles/enclave.Dockerfile . - docker push ${{env.L2_ENCLAVE_DOCKER_BUILD_TAG}} - DOCKER_BUILDKIT=1 docker build -t ${{env.L2_HOST_DOCKER_BUILD_TAG}} -f dockerfiles/host.Dockerfile . - docker push ${{env.L2_HOST_DOCKER_BUILD_TAG}} - DOCKER_BUILDKIT=1 docker build -t ${{env.L2_HARDHATDEPLOYER_DOCKER_BUILD_TAG}} -f tools/hardhatdeployer/Dockerfile . - docker push ${{env.L2_HARDHATDEPLOYER_DOCKER_BUILD_TAG}} + DOCKER_BUILDKIT=1 docker build -t ${{vars.L2_ENCLAVE_DOCKER_BUILD_TAG}} -f dockerfiles/enclave.Dockerfile . + docker push ${{vars.L2_ENCLAVE_DOCKER_BUILD_TAG}} + DOCKER_BUILDKIT=1 docker build -t ${{vars.L2_HOST_DOCKER_BUILD_TAG}} -f dockerfiles/host.Dockerfile . + docker push ${{vars.L2_HOST_DOCKER_BUILD_TAG}} + DOCKER_BUILDKIT=1 docker build -t ${{vars.L2_HARDHATDEPLOYER_DOCKER_BUILD_TAG}} -f tools/hardhatdeployer/Dockerfile . + docker push ${{vars.L2_HARDHATDEPLOYER_DOCKER_BUILD_TAG}} - name: 'Deploy Contracts' id: deployContracts