Skip to content

Commit ed03e1c

Browse files
committed
bump versioning tool
1 parent 22c82a7 commit ed03e1c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/versioning.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
- name: Calculate version
3434
id: calculate-version
35-
uses: bitshifted/git-auto-semver@v1
35+
uses: bitshifted/git-auto-semver@v2
3636
with:
3737
main_branch: main
3838
create_tag: true

internal/sync/images_sync.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ func syncTag(ctx context.Context, image *structs.Image, tag string, dstTags []st
3030
var actualDsts []string
3131

3232
for _, dst := range image.Targets {
33-
if !slices.Contains(image.MutableTags, tag) && slices.Contains(dstTags, fmt.Sprintf("%s:%s", dst, tag)) {
33+
if !slices.Contains(image.MutableTags, tag) && slices.Contains(dstTags, fmt.Sprintf("%s:%s", dst, tag)) && !slices.Contains(image.MutableTags, "*") {
3434
continue
3535
}
3636

0 commit comments

Comments
 (0)