From 23473860a2afd089ed8f835bb1780166c093b685 Mon Sep 17 00:00:00 2001 From: FUJITA Tomonori Date: Thu, 29 Aug 2019 15:05:21 +0900 Subject: github: workaround for action trigger bug https://github.community/t5/GitHub-API-Development-and/How-to-restrict-execution-of-GitHub-Actions-workflow-on-tags/td-p/29567 'tags' doesn't work; the action is executed when anything (tag, branch, etc) is created. Let's work around. Signed-off-by: FUJITA Tomonori --- .github/workflows/release.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to '.github') diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 739f20af..acfe2ce0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,8 +2,11 @@ name: release on: create: - tags: - - v*.*.* + branches: + - refs/tags/* +# create: +# tags: +# - v*.*.* jobs: build: -- cgit v1.2.3