diff options
author | FUJITA Tomonori <fujita.tomonori@gmail.com> | 2021-02-13 21:00:55 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@gmail.com> | 2021-02-13 21:00:55 +0900 |
commit | c1c2e05058ffce220edcb07f68bcd4208949b504 (patch) | |
tree | 56401b75cf7685a07b669a4eec0de74883d096c3 | |
parent | 3339f97722e35d5ff351ef500de1e61344cbd33d (diff) |
release action should be triggered only when a tag is pushed.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@gmail.com>
-rw-r--r-- | .github/workflows/release.yml | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 394a6660..b93aee40 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,12 +1,9 @@ name: release on: - create: - branches: - - refs/tags/* -# create: -# tags: -# - v*.*.* + push: + tags: + - v[0-9]+.* jobs: build: |