feat: implement CI/CD pipeline and release automation

This commit is contained in:
Yar Kravtsov
2025-05-24 09:20:43 +03:00
parent 905d88e0cf
commit 398d011270
10 changed files with 593 additions and 4 deletions

View File

@@ -2,6 +2,13 @@ package main
import "github.com/yarlson/lnk/cmd"
// These variables are set by GoReleaser via ldflags
var (
version = "dev"
buildTime = "unknown"
)
func main() {
cmd.SetVersion(version, buildTime)
cmd.Execute()
}