From 3e30bbf1b33c8b6213c793eb0cf6b61b0edc72f1 Mon Sep 17 00:00:00 2001 From: jasonsaayman Date: Wed, 18 Feb 2026 18:33:56 +0200 Subject: [PATCH] chore: fix publish to only run on v1 tags --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8013adaf..550b8406 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -3,7 +3,7 @@ name: Publish package to NPM on: push: tags: - - "v*.*.*" + - 'v1.*.*' permissions: contents: write @@ -21,7 +21,7 @@ jobs: with: node-version: 24.x cache: npm - registry-url: "https://registry.npmjs.org" + registry-url: 'https://registry.npmjs.org' - name: Install dependencies run: npm ci - name: Build project