Skip to content

Commit

Permalink
Merge pull request #74 from wemogy/main
Browse files Browse the repository at this point in the history
fix: Args with whitespaces
  • Loading branch information
Bennet Ranft authored Apr 26, 2024
2 parents 209ed91 + 03f1beb commit cca369f
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,20 +54,20 @@ runs:
image: "docker://ghcr.io/wemogy/get-release-version-action:4.3.0"
args:
- --prefix
- '"${{ inputs.prefix }}"'
- ${{ inputs.prefix }}
- --suffix
- '"${{ inputs.suffix }}"'
- ${{ inputs.suffix }}
- --reference-version-suffix
- '"${{ inputs.reference-version-suffix }}"'
- ${{ inputs.reference-version-suffix }}
- --bumping-suffix
- '"${{ inputs.bumping-suffix }}"'
- ${{ inputs.bumping-suffix }}
- --only-bump-suffix
- '"${{ inputs.only-bump-suffix }}"'
- ${{ inputs.only-bump-suffix }}
- --create-tag
- '"${{ inputs.create-tag }}"'
- ${{ inputs.create-tag }}
- --git-username
- '"${{ inputs.git-username }}"'
- ${{ inputs.git-username }}
- --git-email
- '"${{ inputs.git-email }}"'
- ${{ inputs.git-email }}
- --mode
- '"${{ inputs.mode }}"'
- ${{ inputs.mode }}

0 comments on commit cca369f

Please sign in to comment.