issue with patterns and vendor directory
This commit is contained in:
parent
18427728ae
commit
7b012832b4
2 changed files with 2 additions and 1 deletions
2
.github/main.workflow
vendored
2
.github/main.workflow
vendored
|
@ -10,7 +10,7 @@ action "check" {
|
|||
action "release-filter" {
|
||||
needs = ["check"]
|
||||
uses = "actions/bin/filter@master"
|
||||
args = "tag v*"
|
||||
args = "tag 'v*'"
|
||||
}
|
||||
|
||||
# only release on `v*` tags
|
||||
|
|
1
Makefile
1
Makefile
|
@ -13,6 +13,7 @@ IS_SNAPSHOT = $(if $(findstring -, $(VERSION)),true,false)
|
|||
TAG_VERSION = v$(VERSION)
|
||||
|
||||
ACT ?= go run -mod=vendor main.go
|
||||
export GITHUB_TOKEN = $(shell cat ~/.config/github/token)
|
||||
|
||||
default: check
|
||||
|
||||
|
|
Loading…
Reference in a new issue