Skip to content

Commit 0da9d2c

Browse files
YusukeHiraoclaude
andcommitted
fix(github): use broad tag filter with job-level condition
GitHub Actions tag filters do not support @ in patterns. Use tags: ["**"] and filter with if: startsWith on the job. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 393e45e commit 0da9d2c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Publish
33
on:
44
push:
55
tags:
6-
- "@d-zero/**"
6+
- "**"
77

88
concurrency:
99
group: publish
@@ -15,6 +15,7 @@ permissions:
1515

1616
jobs:
1717
publish:
18+
if: startsWith(github.ref_name, '@d-zero/')
1819
runs-on: ubuntu-latest
1920
steps:
2021
- name: Checkout code

0 commit comments

Comments
 (0)