From 7c717797b225c7685790167e183437bad1c95dd9 Mon Sep 17 00:00:00 2001 From: ganeshvanahalli Date: Thu, 12 Oct 2023 16:57:03 -0500 Subject: [PATCH] change image name --- .github/workflows/docker.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index d4062cdd47..8e439633dd 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -45,7 +45,7 @@ jobs: target: nitro-node push: true context: . - tags: localhost:5000/nitro-node:latest + tags: nitro-node:latest cache-from: type=local,src=/tmp/.buildx-cache cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max @@ -55,11 +55,11 @@ jobs: target: nitro-node-dev push: true context: . - tags: localhost:5000/nitro-node-dev:latest + tags: nitro-node-dev:latest cache-from: type=local,src=/tmp/.buildx-cache cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max - - name: Start background nitro-testnode and wait for rpc to come up + - name: Start background nitro-testnode shell: bash run: | cd nitro-testnode @@ -75,7 +75,7 @@ jobs: run: | # Unfortunately, `docker cp` seems to always result in a "permission denied" # We work around this by piping a tarball through stdout - docker run --rm --entrypoint tar localhost:5000/nitro-node-dev:latest -cf - target/machines/latest | tar xf - + docker run --rm --entrypoint tar nitro-node-dev:latest -cf - target/machines/latest | tar xf - module_root="$(cat "target/machines/latest/module-root.txt")" echo "name=module-root=$module_root" >> $GITHUB_STATE echo -e "\x1b[1;34mWAVM module root:\x1b[0m $module_root"