Skip to content

Commit

Permalink
fix: pipeline tag filter (#19)
Browse files Browse the repository at this point in the history
* fix: pipeline tag filter

* fix: update package metadata
  • Loading branch information
woile authored Jul 22, 2022
1 parent 65a5afa commit a97b0c7
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/bumpversion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- name: Create bump and changelog
uses: commitizen-tools/commitizen-action@master
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pythonpublish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Upload Python Package
on:
push:
tags:
- '^[0-9]*'
- '*'

jobs:
deploy:
Expand Down
Empty file added CHANGELOG.md
Empty file.
18 changes: 16 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,22 @@
[tool.poetry]
name = "kstreams"
version = "0.2.0"
description = ""
description = "Build simple kafka streams applications"
authors = ["Marcos Schroh <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
keywords = ["stream", "kafka", "event streaming"]
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: System :: Networking",
"Topic :: System :: Distributed Computing",
"Framework :: AsyncIO",
]

[tool.poetry.dependencies]
python = "^3.8"
Expand Down Expand Up @@ -63,9 +77,9 @@ from_first = false
include_trailing_comma = true

[tool.commitizen]
bump_message = "BUMP: version $current_version → $new_version"
version = "0.2.0"
tag_format = "$version"
version_files = [
"pyproject.toml:version",
]
update_changelog_on_bump = true

0 comments on commit a97b0c7

Please sign in to comment.