From e44d5e8c2763ceb76165f962a774df180a2e8797 Mon Sep 17 00:00:00 2001 From: Gino Imbrailo Date: Fri, 16 Sep 2022 14:16:07 -0700 Subject: [PATCH] chore: remove localhost echo (#38) * chore: removed echo for localhost * chore: changed version in the readme --- README.md | 8 ++++---- entrypoint.sh | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 29f04f9..e94949f 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ When set to true, all tests in the `tests` directory will be run using the Jest ### Single step action ```yaml - name: taqueria tasks - uses: ecadlabs/taqueria-github-action@v0.6.0 + uses: ecadlabs/taqueria-github-action@v0.6.1 with: plugins: '@taqueria/plugin-ligo, @taqueria/plugin-flextesa, @taqueria/plugin-taquito, @taqueria/plugin-jest' compile_contracts: counter.jsligo @@ -56,19 +56,19 @@ When set to true, all tests in the `tests` directory will be run using the Jest ### Multiple step action ```yaml - name: compile contracts - uses: ecadlabs/taqueria-github-action@v0.6.0 + uses: ecadlabs/taqueria-github-action@v0.6.1 with: project_directory: 'example-projects/hello-tacos' compile_contracts: 'hello-tacos.mligo' - name: start local sandbox - uses: ecadlabs/taqueria-github-action@v0.6.0 + uses: ecadlabs/taqueria-github-action@v0.6.1 with: project_directory: 'example-projects/hello-tacos' sandbox_name: 'local' - name: deploy contracts - uses: ecadlabs/taqueria-github-action@v0.6.0 + uses: ecadlabs/taqueria-github-action@v0.6.1 with: project_directory: 'example-projects/hello-tacos' deploy_contracts: hello-tacos.tz diff --git a/entrypoint.sh b/entrypoint.sh index 98a12e5..6db3208 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,5 +1,5 @@ #!/bin/bash -echo "Set localhost to 172.17.0.1" +## Because of the docker-in-docker setup for the action we need to set 'localhost' to the host docker IP echo "172.17.0.1 localhost" > /etc/hosts if [ -z "$INPUT_PROJECT_DIRECTORY" ]; then