Skip to content

Commit c1c2e05

Browse files
committed
ci: fix release action
release action should be triggered only when a tag is pushed. Signed-off-by: FUJITA Tomonori <[email protected]>
1 parent 3339f97 commit c1c2e05

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
name: release
22

33
on:
4-
create:
5-
branches:
6-
- refs/tags/*
7-
# create:
8-
# tags:
9-
# - v*.*.*
4+
push:
5+
tags:
6+
- v[0-9]+.*
107

118
jobs:
129
build:

0 commit comments

Comments
 (0)