1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-11-06 09:09:29 +02:00

feat(blob): deprecate kmskey

This commit is contained in:
Carlos Alexandro Becker
2024-01-07 15:09:13 -03:00
parent 88ebab066d
commit 0f57398745
3 changed files with 27 additions and 1 deletions

View File

@@ -33,6 +33,10 @@ func (Pipe) Default(ctx *context.Context) error {
deprecate.Notice(ctx, "blobs.disableSSL")
blob.DisableSSL = true
}
if blob.OldKMSKey != "" {
deprecate.Notice(ctx, "blobs.kmskey")
blob.KMSKey = blob.OldKMSKey
}
}
return nil
}