Skip to content

Commit

Permalink
fix: respect additional suffixes and prefixes when publishing releases (
Browse files Browse the repository at this point in the history
  • Loading branch information
rdash99 authored Jan 25, 2024
1 parent 5556744 commit d521ed0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -169,10 +169,10 @@ jobs:
github.rest.repos.createRelease({
owner: "${{ github.repository_owner }}",
repo: "${{ github.event.repository.name }}",
tag_name: "${{ fromJSON(inputs.release-info).git-tag }}",
tag_name: "${{ inputs.registry-tag-prefix }}${{ fromJSON(inputs.release-info).git-tag }}${{ inputs.registry-tag-suffix }}",
target_commitish: "${{ github.sha }}",
body: process.env.RELEASE_NOTES,
name: "${{ fromJSON(inputs.release-info).git-tag }}"
name: "${{ inputs.registry-tag-prefix }}${{ fromJSON(inputs.release-info).git-tag }}${{ inputs.registry-tag-suffix }}"
});
- name: annotate the ci run with container tags
Expand Down

0 comments on commit d521ed0

Please sign in to comment.