summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/main.workflow2
-rw-r--r--Makefile1
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
diff --git a/Makefile b/Makefile
index 0f33e75..39ceae4 100644
--- a/Makefile
+++ b/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