diff --git a/Dockerfile b/Dockerfile index dc488e5..af15790 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ ENV DENO_DIR=/deno COPY --from=docker:dind /usr/local/bin/docker /bin/docker # Download the Taqueria release binary for Linux to /bin/taq -ADD https://github.com/ecadlabs/taqueria/releases/latest/download/taq-linux /bin/taq +ADD https://github.com/ecadlabs/taqueria/releases/download/v0.18.0/taq-linux /bin/taq # Make the binary executable RUN chmod +x /bin/taq diff --git a/README.md b/README.md index 7ad3452..29f04f9 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,9 @@ A docker action that helps simplify and standardize the use of [Taqueria](https://taqueria.io/) in GitHub workflows +## Taqueria version +`v0.18.0` + ## Inputs ### `compile_contracts` @@ -41,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.4.0 + uses: ecadlabs/taqueria-github-action@v0.6.0 with: plugins: '@taqueria/plugin-ligo, @taqueria/plugin-flextesa, @taqueria/plugin-taquito, @taqueria/plugin-jest' compile_contracts: counter.jsligo @@ -53,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.4.0 + uses: ecadlabs/taqueria-github-action@v0.6.0 with: project_directory: 'example-projects/hello-tacos' compile_contracts: 'hello-tacos.mligo' - name: start local sandbox - uses: ecadlabs/taqueria-github-action@v0.4.0 + uses: ecadlabs/taqueria-github-action@v0.6.0 with: project_directory: 'example-projects/hello-tacos' sandbox_name: 'local' - name: deploy contracts - uses: ecadlabs/taqueria-github-action@v0.4.0 + uses: ecadlabs/taqueria-github-action@v0.6.0 with: project_directory: 'example-projects/hello-tacos' deploy_contracts: hello-tacos.tz