Skip to content

Commit

Permalink
Add CI job to create release (#40)
Browse files Browse the repository at this point in the history
* Add CI job to create release

* Set Version: 0.1.4

---------

Co-authored-by: devops <[email protected]>
  • Loading branch information
tothtamas28 and devops authored Sep 22, 2023
1 parent 3d2e846 commit 30e27f5
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/master-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,25 @@ on:

jobs:

cut-release:
name: 'Cut Release'
runs-on: ubuntu-latest
steps:
- name: 'Check out code'
uses: actions/checkout@v3
with:
ref: ${{ github.event.push.head.sha }}
fetch-depth: 0

- name: 'Create Release'
env:
GITHUB_TOKEN: ${{ secrets.JENKINS_GITHUB_PAT }}
run: |
set -x
VERSION=v$(cat package/version)
gh release create ${VERSION} --target ${{ github.sha }}
dockerhub:
name: 'Build and Publish Docker Image'
runs-on: [self-hosted, linux, normal]
Expand Down
2 changes: 1 addition & 1 deletion package/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.3
0.1.4
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.3"
version = "0.1.4"
description = "Foundry integration for KEVM"
authors = [
"Runtime Verification, Inc. <[email protected]>",
Expand Down

0 comments on commit 30e27f5

Please sign in to comment.