FIX (commit messages): Allow to use backstashes in messages x3

This commit is contained in:
Rostislav Dugin
2026-01-18 14:57:45 +03:00
parent 13cb8e5bd2
commit a4b23936ee

View File

@@ -463,6 +463,7 @@ jobs:
- name: Analyze commits and determine version bump
id: version_bump
shell: bash
run: |
CURRENT_VERSION="${{ steps.current_version.outputs.current_version }}"
LATEST_TAG=$(git describe --tags --abbrev=0 2>/dev/null || echo "v0.0.0")
@@ -614,6 +615,7 @@ jobs:
- name: Generate changelog
id: changelog
shell: bash
run: |
NEW_VERSION="${{ needs.determine-version.outputs.new_version }}"
LATEST_TAG=$(git describe --tags --abbrev=0 2>/dev/null || echo "v0.0.0")