From 632f9a8d853d46c7f65b34cdde05fe4eb332cc06 Mon Sep 17 00:00:00 2001 From: Alexey Pelykh Date: Sat, 28 May 2022 16:29:31 +0200 Subject: [PATCH] Don't create tags and allow same version --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 55070eb..545a877 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -14,7 +14,7 @@ jobs: node-version: lts/* registry-url: https://registry.npmjs.org - run: npm ci - - run: npm version "${GITHUB_REF##*/}" + - run: npm version "${GITHUB_REF##*/}" --allow-same-version --no-git-tag-version - run: npm publish env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}