#31 - correct error in the version number format when wheel file is published to repo
Unit test coverage / pytest (push) Failing after 1m0s
Unit test coverage / pytest (pull_request) Failing after 57s

This commit is contained in:
Stanislav Hejny
2025-05-01 16:30:02 +01:00
parent bde74c82b5
commit 49330ada45
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -32,7 +32,7 @@ jobs:
- name: Add timestamp to version
if: github.head_ref != 'master'
run: |
sed -i -E "s/(version = \"[^\"]+)(-dev)\"/\1\2$(date -u +'%Y%m%d%H%M%S')\"/" pyproject.toml
sed -i -E "s/(version = \"[^\"]+)\"/\1-build.$(date -u +'%Y%m%d%H%M%S')\"/" pyproject.toml
cat pyproject.toml
- name: Build wheel
run: |
@@ -47,4 +47,4 @@ jobs:
dist/*
env:
CI_REGISTRY_USER: ${{ secrets.REGISTRY_USER }}
CI_REGISTRY_PASSWORD: ${{ secrets.REGISTRY_PASSWORD }}
CI_REGISTRY_PASSWORD: ${{ secrets.REGISTRY_PASSWORD }}
+1 -1
View File
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "amq_adapter"
version = "0.2.23-dev"
version = "0.2.24"
description = "The Python implementation of the AMQ Adaptor for CleverMicro"
readme = "README.md"
authors = [