Skip to content
This repository was archived by the owner on Mar 16, 2026. It is now read-only.

Commit 3562fd4

Browse files
committed
fix: update worker-release workflow to correctly trigger on tag pushes
- Removed redundant push event declaration for the main branch. - Ensured the workflow triggers on tags matching 'worker-v*.*.*' for proper release management.
1 parent 4c039cd commit 3562fd4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/worker-release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@ name: Worker build and release
33
on:
44
push:
55
branches: [main]
6-
paths: ['worker/**']
7-
push:
86
tags: ['worker-v*.*.*']
7+
paths: ['worker/**']
98

109
jobs:
1110
test:

0 commit comments

Comments
 (0)