Skip to content

Commit 41ebf57

Browse files
authored
[CI] Fix signal for Continuous Delivery
ci: fix tag discovery on master branch
2 parents c668507 + 215c931 commit 41ebf57

File tree

6 files changed

+13
-6
lines changed

6 files changed

+13
-6
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,7 @@ jobs:
253253
with:
254254
fetch-depth: 0
255255
- run: git branch --track "${{ env.RELEASE_BR }}" "origin/${{ env.RELEASE_BR }}"
256+
- run: git branch --track "${{ env.MAIN_BR }}" "origin/${{ env.MAIN_BR }}"
256257

257258
- name: "Check if '${{ github.ref }}' tag is on '${{ env.MAIN_BR }}' branch"
258259
uses: rickstaa/action-contains-tag@v1

CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ Changelog
33
=========
44

55

6+
2.5.1-dev (2024-04-12)
7+
======================
8+
9+
Internal CI/CD Pipeline minor fix.
10+
11+
612
2.5.1 (2024-04-10)
713
==================
814

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,9 +275,9 @@ Free/Libre and Open Source Software (FLOSS)
275275

276276
.. Github Releases & Tags
277277
278-
.. |commits_since_specific_tag_on_master| image:: https://img.shields.io/github/commits-since/boromir674/cookiecutter-python-package/v2.5.1/master?color=blue&logo=github
278+
.. |commits_since_specific_tag_on_master| image:: https://img.shields.io/github/commits-since/boromir674/cookiecutter-python-package/v2.5.1-dev/master?color=blue&logo=github
279279
:alt: GitHub commits since tagged version (branch)
280-
:target: https://github.com/boromir674/cookiecutter-python-package/compare/v2.5.1..master
280+
:target: https://github.com/boromir674/cookiecutter-python-package/compare/v2.5.1-dev..master
281281

282282
.. |commits_since_latest_github_release| image:: https://img.shields.io/github/commits-since/boromir674/cookiecutter-python-package/latest?color=blue&logo=semver&sort=semver
283283
:alt: GitHub commits since latest release (by SemVer)

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
author = 'Konstantinos Lampridis'
3131

3232
# The full version, including alpha/beta/rc tags
33-
release = '2.5.1'
33+
release = '2.5.1-dev'
3434

3535
# -- General configuration ---------------------------------------------------
3636

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ build-backend = "poetry.core.masonry.api"
1414
name = "cookiecutter_python"
1515
### ... ###
1616

17-
version = "2.5.1"
17+
version = "2.5.1-dev"
1818
description = "1-click Generator of Python Project, from Template with streamlined \"DevOps\" using a powerful CI/CD Pipeline."
1919
readme = "README.rst"
2020
license = "AGPL-3.0-only"
@@ -74,7 +74,7 @@ maintainers = [
7474
license = {text = "AGPL-3.0-only"}
7575

7676
name = "cookiecutter_python"
77-
version = "2.5.1"
77+
version = "2.5.1-dev"
7878
description = "1-click Generator of Python Project, from Template with streamlined \"DevOps\" using a powerful CI/CD Pipeline."
7979
readme = "README.rst"
8080
# keywords = []
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = '2.5.1'
1+
__version__ = '2.5.1-dev'
22

33
from . import _logging # noqa

0 commit comments

Comments
 (0)