Skip to content

Commit 73a7673

Browse files
farhanclaude
andcommitted
fix: trigger release workflow on push to master instead of tags
semantic-release runs on every push to master and decides internally whether to cut a new release based on commit history; a tag-push trigger is never fired by the workflow itself. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 695a0a3 commit 73a7673

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: Release CI
22
on:
33
push:
4-
tags:
5-
- '*'
4+
branches:
5+
- master
66

77
permissions:
88
id-token: write # Required for OIDC

0 commit comments

Comments
 (0)