Skip to content

Commit

Permalink
Merge pull request #50 from ecadlabs/update-taqueria-version
Browse files Browse the repository at this point in the history
Update Taqueria version
  • Loading branch information
BGMurphy authored Nov 24, 2022
2 parents 274c119 + c0da380 commit 68996a3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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/download/v0.24.1/taq-linux /bin/taq
ADD https://github.com/ecadlabs/taqueria/releases/download/v0.24.2/taq-linux /bin/taq

# Make the binary executable
RUN chmod +x /bin/taq
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
A docker action that helps simplify and standardize the use of [Taqueria](https://taqueria.io/) in GitHub workflows

## Taqueria version
`v0.24.1`
`v0.24.2`

## Inputs

Expand Down Expand Up @@ -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.11.0
uses: ecadlabs/taqueria-github-action@v0.12.0
with:
plugins: '@taqueria/plugin-ligo, @taqueria/plugin-flextesa, @taqueria/plugin-taquito, @taqueria/plugin-jest'
compile_contracts: counter.jsligo
Expand All @@ -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.11.0
uses: ecadlabs/taqueria-github-action@v0.12.0
with:
project_directory: 'example-projects/hello-tacos'
compile_contracts: 'hello-tacos.mligo'

- name: start local sandbox
uses: ecadlabs/taqueria-github-action@v0.11.0
uses: ecadlabs/taqueria-github-action@v0.12.0
with:
project_directory: 'example-projects/hello-tacos'
sandbox_name: 'local'

- name: deploy contracts
uses: ecadlabs/taqueria-github-action@v0.11.0
uses: ecadlabs/taqueria-github-action@v0.12.0
with:
project_directory: 'example-projects/hello-tacos'
deploy_contracts: hello-tacos.tz
Expand Down

0 comments on commit 68996a3

Please sign in to comment.