From 4dbdab58459ce8a261236841f5419086a194fb89 Mon Sep 17 00:00:00 2001 From: Petr Pucil Date: Mon, 19 Aug 2024 18:53:57 +0200 Subject: [PATCH] GH Actions: publish tags starting with `v0.`, not just `0.` The tag for version 0.10 was `v0.10.0`, so let's complete the transition to tags with the `v` prefix. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2a1a0b1..83f243a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,9 +1,9 @@ -name: npm build +name: npm publish on: push: tags: - - '0.[0-9]+.[0-9]+-SNAPSHOT.[0-9]+' + - 'v0.[0-9]+.[0-9]+-SNAPSHOT.[0-9]+' jobs: publish-npm: