Skip to content

Commit

Permalink
Merge pull request #46 from draios/add-prefix-flag-to-version-take-3
Browse files Browse the repository at this point in the history
properly build the version tag
  • Loading branch information
mbreitung authored Oct 16, 2023
2 parents b80663f + 3d57543 commit 95e5c27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ runs:
run: |
[[ -n "${{ inputs.image_tag_string_prefix }}" ]] && _prefix="${{ inputs.image_tag_string_prefix }}-" || _prefix=""
[[ -n "${{ inputs.image_tag_string_suffix }}" ]] && _suffix="-${{ inputs.image_tag_string_suffix }}" || _suffix=""
echo "ver=$_prefix}${_ver}${_suffix}" >> $GITHUB_OUTPUT
echo "ver=${_prefix}${{ steps.bump_version.outputs.new_version }}${_suffix}" >> $GITHUB_OUTPUT
- name: Build container meta
id: meta
Expand Down

0 comments on commit 95e5c27

Please sign in to comment.