diff options
author | FUJITA Tomonori <fujita.tomonori@gmail.com> | 2019-08-29 15:05:21 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@gmail.com> | 2019-08-29 15:05:21 +0900 |
commit | 23473860a2afd089ed8f835bb1780166c093b685 (patch) | |
tree | 655e56a84c142986967b90de474e5cdef4f7a50d /.github | |
parent | a7e6068fbd51ba38a2b739df376ecb4febab4048 (diff) |
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 <fujita.tomonori@gmail.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/release.yml | 7 |
1 files changed, 5 insertions, 2 deletions
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: |