Skip to content

Commit

Permalink
patch: fix condition in actions to build self-update
Browse files Browse the repository at this point in the history
  • Loading branch information
rockavoldy authored Jul 25, 2023
1 parent d2b1103 commit 369f1cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
outputs:
bump_tag: ${{ steps.set_output.outputs.bump_tag }}
old_pre_tag: ${{ steps.set_output.outputs.old_pre_tag }}
if: contains(fromJSON('["patch:","feat:","feat(bump):",":release:"]'), github.event.head_commit.message)
if: startsWith(github.event.head_commit.message, fromJSON('["patch:","feat:","feat(bump):"]'))
steps:
- uses: actions/checkout@v3
- name: Manage Version
Expand Down

0 comments on commit 369f1cf

Please sign in to comment.