Skip to content

Commit

Permalink
style: remove latest prefix on additional tags
Browse files Browse the repository at this point in the history
  • Loading branch information
samypr100 committed Aug 13, 2024
1 parent 0b39fa2 commit c0e0cf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ jobs:
TAG_LIST=""
# Loop through all tags and append them to the TAG_LIST
IFS=','; for TAG in ${TAGS}; do
TAG_LIST="${TAG_LIST},${{ env.UV_BASE_IMG }}:latest-${TAG},${{ env.UV_BASE_IMG }}:${{ (inputs.plan != '' && fromJson(inputs.plan).announcement_tag) || 'dry-run' }}-${TAG}"
TAG_LIST="${TAG_LIST},${{ env.UV_BASE_IMG }}:${TAG},${{ env.UV_BASE_IMG }}:${{ (inputs.plan != '' && fromJson(inputs.plan).announcement_tag) || 'dry-run' }}-${TAG}"
done
# Remove the leading comma from TAG_LIST
TAG_LIST="${TAG_LIST:1}"
Expand Down

0 comments on commit c0e0cf5

Please sign in to comment.