Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions pkg/utils/mageutils/release.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@ import (
"github.com/magefile/mage/sh"
)

// CreateAlphaTag executes "git", "tag", "-f", "-s", "v0.0.0-alpha", "-m", "v0.0.0-alpha"
// CreateAlphaTag executes "git", "tag", "-f", "-s", "alpha", "-m", "alpha"
func CreateAlphaTag() error {
mg.Deps(isGitExistent)

return sh.RunV("git", "tag", "-f", "-s", "v0.0.0-alpha", "-m", "v0.0.0-alpha")
return sh.RunV("git", "tag", "-f", "-s", "alpha", "-m", "alpha")
}

// GitPushAlpha executes "git", "push", "origin", "-f", "v0.0.0-alpha"
// GitPushAlpha executes "git", "push", "origin", "-f", "alpha"
func GitPushAlpha() error {
mg.Deps(isGitExistent)

return sh.RunV("git", "push", "origin", "-f", "v0.0.0-alpha")
return sh.RunV("git", "push", "origin", "-f", "alpha")
}

// CreateLocalTag executes "git", "tag", "-s", tag, "-m", "release "+tag
Expand Down