Skip to content

Commit

Permalink
Fixes the quoting in the bumpversion expressions
Browse files Browse the repository at this point in the history
  • Loading branch information
coordt committed Apr 14, 2023
1 parent 857835d commit 9a55d6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/bumpversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
echo "release-kind=$RELEASE_KIND" >> $GITHUB_OUTPUT
- name: Bump Version auto
if: ${{ github.event_name != "workflow_dispatch" }}
if: ${{ github.event_name != 'workflow_dispatch' }}
shell: bash
run: |
if [[ $RELEASE_KIND != "no-release" ]]; then
Expand All @@ -55,7 +55,7 @@ jobs:
fi
- name: Bump Version manual
if: ${{ github.event_name == "workflow_dispatch" }}
if: ${{ github.event_name == 'workflow_dispatch' }}
shell: bash
env:
BUMPVERSION_DRY_RUN: ${{ inputs.dry_run }}
Expand Down

0 comments on commit 9a55d6d

Please sign in to comment.