Skip to content

Commit 9a55d6d

Browse files
committed
Fixes the quoting in the bumpversion expressions
1 parent 857835d commit 9a55d6d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/bumpversion.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
echo "release-kind=$RELEASE_KIND" >> $GITHUB_OUTPUT
4646
4747
- name: Bump Version auto
48-
if: ${{ github.event_name != "workflow_dispatch" }}
48+
if: ${{ github.event_name != 'workflow_dispatch' }}
4949
shell: bash
5050
run: |
5151
if [[ $RELEASE_KIND != "no-release" ]]; then
@@ -55,7 +55,7 @@ jobs:
5555
fi
5656
5757
- name: Bump Version manual
58-
if: ${{ github.event_name == "workflow_dispatch" }}
58+
if: ${{ github.event_name == 'workflow_dispatch' }}
5959
shell: bash
6060
env:
6161
BUMPVERSION_DRY_RUN: ${{ inputs.dry_run }}

0 commit comments

Comments
 (0)