Skip to content

Commit

Permalink
[release] [minor] fix release action
Browse files Browse the repository at this point in the history
  • Loading branch information
SockworkOrange committed Jul 15, 2024
1 parent ba169bb commit 4f6cc43
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ on:
workflows: [CI]
types: [completed]
branches: [main]

push:
branches: [ "small-fix-to-release" ]

jobs:
check_commit:
name: Check Commit
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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))
Expand Down

0 comments on commit 4f6cc43

Please sign in to comment.