We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 857835d commit 9a55d6dCopy full SHA for 9a55d6d
.github/workflows/bumpversion.yaml
@@ -45,7 +45,7 @@ jobs:
45
echo "release-kind=$RELEASE_KIND" >> $GITHUB_OUTPUT
46
47
- name: Bump Version auto
48
- if: ${{ github.event_name != "workflow_dispatch" }}
+ if: ${{ github.event_name != 'workflow_dispatch' }}
49
shell: bash
50
run: |
51
if [[ $RELEASE_KIND != "no-release" ]]; then
@@ -55,7 +55,7 @@ jobs:
55
fi
56
57
- name: Bump Version manual
58
- if: ${{ github.event_name == "workflow_dispatch" }}
+ if: ${{ github.event_name == 'workflow_dispatch' }}
59
60
env:
61
BUMPVERSION_DRY_RUN: ${{ inputs.dry_run }}
0 commit comments