Skip to content

Commit

Permalink
refactor(ci): revert to using a stable version of Taqueria in each re…
Browse files Browse the repository at this point in the history
…lease (#37)
  • Loading branch information
GImbrailo authored Sep 16, 2022
1 parent d3eba46 commit 101d242
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 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/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
Expand Down
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 101d242

Please sign in to comment.