diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 98e5158..ccf47b3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,9 @@ on: workflows: [CI] types: [completed] branches: [main] - + push: + branches: [ "small-fix-to-release" ] + jobs: check_commit: name: Check Commit @@ -28,17 +30,14 @@ jobs: id: check_msg run: | LATEST_COMMIT_MSG=$(git log -1 --pretty=%B | cat) - if [[ ${LATEST_COMMIT_MSG} == *"[release]"* ]]; then echo "release message found - continuing with the release" IS_RELEASE="true" else - echo "release message found - skipping..." + echo "no release message found - skipping..." IS_RELEASE="false" fi - echo "IS_RELEASE=${IS_RELEASE}" >> $GITHUB_OUTPUT - echo "LATEST_COMMIT_MSG=\"${LATEST_COMMIT_MSG}\"" >> $GITHUB_OUTPUT release: name: Release @@ -47,7 +46,6 @@ jobs: if: ${{ needs.check_commit.outputs.IS_RELEASE == 'true' }} env: IS_RELEASE: ${{ needs.check_commit.outputs.IS_RELEASE }} - LATEST_COMMIT_MSG: ${{ needs.check_commit.outputs.LATEST_COMMIT_MSG }} steps: - name: Check out Git repository uses: actions/checkout@v4 @@ -66,6 +64,7 @@ jobs: - name: Bump version run: | set -e + LATEST_COMMIT_MSG=$(git log -1 --pretty=%B | cat) echo "Extract the latest tag version" LATEST_TAG=$(git describe --tags $(git rev-list --tags --max-count=1))