Skip to content

Commit

Permalink
Fix master deployments (#111)
Browse files Browse the repository at this point in the history
* .github/master-push: correct way were building master image

* Set Version: 0.1.30

* Set Version: 0.1.30

* Set Version: 0.1.31

* Set Version: 0.1.32

---------

Co-authored-by: devops <devops@runtimeverification.com>
Co-authored-by: rv-jenkins <admin@runtimeverification.com>
  • Loading branch information
3 people authored Oct 19, 2023
1 parent 21f786c commit b966121
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/master-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ jobs:
- name: 'Build Docker image'
run: |
K_VERSION=$(cat deps/k_release)
docker build . --no-cache --tag ${TAG} --build-arg K_VERSION=${K_VERSION}
Z3_VERSION=$(cat deps/z3)
docker build . --no-cache --tag ${TAG} --build-arg K_VERSION=${K_VERSION} --build-arg Z3_VERSION=${Z3_VERSION}
- name: 'Run Docker image'
run: docker run --rm ${TAG} kontrol --help
Expand Down
2 changes: 1 addition & 1 deletion package/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.31
0.1.32
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "kontrol"
version = "0.1.31"
version = "0.1.32"
description = "Foundry integration for KEVM"
authors = [
"Runtime Verification, Inc. <contact@runtimeverification.com>",
Expand Down
2 changes: 1 addition & 1 deletion src/kontrol/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
if TYPE_CHECKING:
from typing import Final

VERSION: Final = '0.1.31'
VERSION: Final = '0.1.32'

0 comments on commit b966121

Please sign in to comment.