Skip to content

Commit 3e30bbf

Browse files
committed
chore: fix publish to only run on v1 tags
1 parent 672491d commit 3e30bbf

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Publish package to NPM
33
on:
44
push:
55
tags:
6-
- "v*.*.*"
6+
- 'v1.*.*'
77

88
permissions:
99
contents: write
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
node-version: 24.x
2323
cache: npm
24-
registry-url: "https://registry.npmjs.org"
24+
registry-url: 'https://registry.npmjs.org'
2525
- name: Install dependencies
2626
run: npm ci
2727
- name: Build project

0 commit comments

Comments
 (0)