diff options
-rw-r--r-- | .github/main.workflow | 2 | ||||
-rw-r--r-- | Makefile | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/.github/main.workflow b/.github/main.workflow index 80c413f..edbf63d 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -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 @@ -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 |