This is an automated email from the ASF dual-hosted git repository.
bossenti pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/streampipes.git
The following commit(s) were added to refs/heads/dev by this push:
new 95c121e95 fix: retrieve release version from GitHub tag (#2232)
95c121e95 is described below
commit 95c121e95f750c4a2ce95d391ecc6cdbb9c71cd8
Author: Tim <[email protected]>
AuthorDate: Wed Nov 29 08:17:34 2023 +0100
fix: retrieve release version from GitHub tag (#2232)
---
.github/workflows/pypi-deployment.yml | 1 +
1 file changed, 1 insertion(+)
diff --git a/.github/workflows/pypi-deployment.yml
b/.github/workflows/pypi-deployment.yml
index 948d837e0..931dc683d 100644
--- a/.github/workflows/pypi-deployment.yml
+++ b/.github/workflows/pypi-deployment.yml
@@ -47,6 +47,7 @@ jobs:
- name: Build package
working-directory: ./streampipes-client-python
run: |
+ poetry version $(echo ${{ github.ref_name }} | awk -F'/' '{print
$2}') # extract release version from tag name
poetry build
poetry run twine check --strict dist/*