issue with patterns and vendor directory

This commit is contained in:
Casey Lee 2019-02-07 09:39:04 -08:00
parent 18427728ae
commit 7b012832b4
No known key found for this signature in database
GPG key ID: 1899120ECD0A1784
2 changed files with 2 additions and 1 deletions

View file

@ -10,7 +10,7 @@ action "check" {
action "release-filter" { action "release-filter" {
needs = ["check"] needs = ["check"]
uses = "actions/bin/filter@master" uses = "actions/bin/filter@master"
args = "tag v*" args = "tag 'v*'"
} }
# only release on `v*` tags # only release on `v*` tags

View file

@ -13,6 +13,7 @@ IS_SNAPSHOT = $(if $(findstring -, $(VERSION)),true,false)
TAG_VERSION = v$(VERSION) TAG_VERSION = v$(VERSION)
ACT ?= go run -mod=vendor main.go ACT ?= go run -mod=vendor main.go
export GITHUB_TOKEN = $(shell cat ~/.config/github/token)
default: check default: check