remove dumb check

This commit is contained in:
Braydon 2023-08-06 01:49:44 -04:00
parent 72bb3f5c5f
commit a9aa07a104
2 changed files with 0 additions and 5 deletions

@ -7,7 +7,6 @@ env:
GOPROXY: https://goproxy.io,direct
GOPATH: /home/rootless/go_path
GOCACHE: /home/rootless/go_cache
CGO_ENABLED: "1"
jobs:
lint:

@ -21,10 +21,6 @@ func main() {
tag := gha.GetInput("tag")
if tag == "" {
tag = ctx.Ref
}
if !strings.HasPrefix(tag, "refs/tags/") {
gha.Fatalf("ref %s is not a tag", tag)
}
files := gha.GetInput("files")