From 7b012832b4680b7cdd9d399790bc63ec74c1452e Mon Sep 17 00:00:00 2001 From: Casey Lee Date: Thu, 7 Feb 2019 09:39:04 -0800 Subject: [PATCH] issue with patterns and vendor directory --- .github/main.workflow | 2 +- Makefile | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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