Skip to content

Commit

Permalink
release:v0.10.0 (#44)
Browse files Browse the repository at this point in the history
* chore: update taqueria version

* chore: change action to run on push

* chore: revert push change

* chore: updated README
  • Loading branch information
GImbrailo authored Nov 16, 2022
1 parent 4ae295b commit 274c119
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 9 deletions.
16 changes: 14 additions & 2 deletions .taq/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,18 @@
"language": "en",
"contractsDir": "contracts",
"artifactsDir": "artifacts",
"network": {},
"network": {
"ghostnet": {
"label": "ghostnet",
"rpcUrl": "https://ghostnet.ecadinfra.com",
"protocol": "PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg"
}
},
"sandbox": {
"local": {
"label": "Local Tezos Sandbox",
"rpcUrl": "http://172.17.0.1:20000",
"protocol": "Psithaca2MLRFYargivpo7YvUr7wUDqyxrdhC5CQq78mRvimz6A"
"protocol": "PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg"
}
},
"environment": {
Expand All @@ -17,6 +23,12 @@
"sandboxes": [
"local"
]
},
"testing": {
"networks": [
"ghostnet"
],
"sandboxes": []
}
},
"accounts": {
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.20.2`
`v0.24.1`

## 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.8.0
uses: ecadlabs/taqueria-github-action@v0.11.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.8.0
uses: ecadlabs/taqueria-github-action@v0.11.0
with:
project_directory: 'example-projects/hello-tacos'
compile_contracts: 'hello-tacos.mligo'

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

- name: deploy contracts
uses: ecadlabs/taqueria-github-action@v0.8.0
uses: ecadlabs/taqueria-github-action@v0.11.0
with:
project_directory: 'example-projects/hello-tacos'
deploy_contracts: hello-tacos.tz
Expand Down
16 changes: 14 additions & 2 deletions example-projects/hello-tacos/.taq/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,18 @@
"language": "en",
"contractsDir": "contracts",
"artifactsDir": "artifacts",
"network": {},
"network": {
"ghostnet": {
"label": "ghostnet",
"rpcUrl": "https://ghostnet.ecadinfra.com",
"protocol": "PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg"
}
},
"sandbox": {
"local": {
"label": "Local Tezos Sandbox",
"rpcUrl": "http://localhost:20000",
"protocol": "Psithaca2MLRFYargivpo7YvUr7wUDqyxrdhC5CQq78mRvimz6A",
"protocol": "PtKathmankSpLLDALzWw7CGD2j2MtyveTwboEYokqUCP4a1LxMg",
"accounts": {
"default": "joe",
"bob": {
Expand Down Expand Up @@ -50,6 +56,12 @@
"address": "KT1H6UfH8pAzg8A5umKbsoZ1M3d7f8DTZwcp"
}
}
},
"testing": {
"networks": [
"ghostnet"
],
"sandboxes": []
}
},
"accounts": {
Expand Down

0 comments on commit 274c119

Please sign in to comment.