Add beta testcase for clarity, coverage, and regression prevention (#64)

This commit is contained in:
Kyle Lemons
2022-11-03 06:35:06 -07:00
committed by GitHub
parent 34cfbdfbd5
commit 2d0315e6bb
+10 -1
View File
@@ -100,7 +100,16 @@ func TestBuild_AutoTags(t *testing.T) {
},
},
{
name: "tag push",
name: "beta tag push",
repoBranch: "master",
commitRef: "refs/tags/v1.0.0-beta.1",
autoTagSuffix: "",
expectedTags: []string{
"1.0.0-beta.1",
},
},
{
name: "tag push with suffix",
repoBranch: "master",
commitRef: "refs/tags/v1.0.0",
autoTagSuffix: "linux-amd64",