Skip to content

Commit

Permalink
change image name
Browse files Browse the repository at this point in the history
  • Loading branch information
ganeshvanahalli committed Oct 12, 2023
1 parent 5f00974 commit 7c71779
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand All @@ -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"
Expand Down

0 comments on commit 7c71779

Please sign in to comment.