Skip to content

Commit

Permalink
Merge pull request #70 from wemogy/main
Browse files Browse the repository at this point in the history
fix: Args with witespaces
  • Loading branch information
Bennet Ranft authored Apr 26, 2024
2 parents 54cfbc6 + d49a5ce commit 6a4e79b
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 6a4e79b

Please sign in to comment.