2 Commits

Author SHA1 Message Date
01986944f0 chore(version): bump version to 0.4.2
All checks were successful
Auto Changelog & Release / release (push) Successful in 8s
2025-06-29 14:13:34 +02:00
c25b2e9cd5 fix(action): update conditions for version detection
- Remove branch-specific checks from conditional statements
- Simplify logic for changelog generation and release steps
- Ensure consistent behavior regardless of branch context
2025-06-29 14:13:34 +02:00
2 changed files with 3 additions and 3 deletions

View File

@@ -1 +1 @@
0.4.1
0.4.2

View File

@@ -52,13 +52,13 @@ runs:
"${{ inputs.author_email }}"
- name: Generate and commit changelog (unreleased)
if: steps.detect.outputs.version_changed == 'false' || github.ref != 'refs/heads/main'
if: steps.detect.outputs.version_changed == 'false'
shell: bash
run: |
${{ github.action_path }}/scripts/generate-unreleased-changelog.sh
- name: Release from VERSION
if: steps.detect.outputs.version_changed == 'true' && github.ref == 'refs/heads/main'
if: steps.detect.outputs.version_changed == 'true'
shell: bash
env:
RELEASE_PUBLISH_TOKEN: ${{ inputs.token || '' }}