Skip to content

Commit a40e7bc

Browse files
committed
Fix release condition
1 parent 2e65be7 commit a40e7bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127
release:
128128
name: Release
129129
runs-on: ubuntu-latest
130-
if: github.event_name == 'release' && github.event.action == 'published'
130+
if: startsWith(github.ref, 'refs/tags/')
131131
needs:
132132
[
133133
macos,

0 commit comments

Comments
 (0)