1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-07-03 00:57:43 +02:00

feat: remove deprecated blob and sign (#1397)

* feat: remove deprecated blob and sign

you should now use blobs and signs instead.

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>

* fix: tests

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
This commit is contained in:
Carlos Alexandro Becker
2020-03-22 16:26:22 -03:00
committed by GitHub
parent 22c9e04efd
commit 0126a1f32b
6 changed files with 19 additions and 40 deletions

View File

@ -62,12 +62,6 @@ func TestDefaultsNoProvider(t *testing.T) {
func TestDefaults(t *testing.T) {
var ctx = context.New(config.Project{
Blob: []config.Blob{
{
Bucket: "foobar",
Provider: "gcs",
},
},
Blobs: []config.Blob{
{
Bucket: "foo",
@ -84,11 +78,6 @@ func TestDefaults(t *testing.T) {
Folder: "{{ .ProjectName }}/{{ .Tag }}",
IDs: []string{"foo", "bar"},
},
{
Bucket: "foobar",
Provider: "gcs",
Folder: "{{ .ProjectName }}/{{ .Tag }}",
},
}, ctx.Config.Blobs)
}