From da456ee3b8ad74bda25163e4841ac9c7d5e11b7b Mon Sep 17 00:00:00 2001 From: Joseph Garrone Date: Fri, 16 Aug 2024 08:39:33 +0200 Subject: [PATCH] Use tag v7 when releasing from this branch --- .github/workflows/ci.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index eebcced7..43288918 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -129,10 +129,7 @@ jobs: echo "Can't publish on NPM, You must first create a secret called NPM_TOKEN that contains your NPM auth token. https://help.github.com/en/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets" false fi - EXTRA_ARGS="" - if [ "$IS_PRE_RELEASE" = "true" ]; then - EXTRA_ARGS="--tag next" - fi + EXTRA_ARGS="--tag v7" npm publish $EXTRA_ARGS env: NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}