From 9a4ee79136a0558ef488682194adcd11030043ac Mon Sep 17 00:00:00 2001 From: Rinat Arsaev <11846445+A77AY@users.noreply.github.com> Date: Tue, 20 Jan 2026 17:55:32 +0700 Subject: [PATCH] fix publish --- publish/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/publish/action.yml b/publish/action.yml index 606061a..e98cbcc 100644 --- a/publish/action.yml +++ b/publish/action.yml @@ -48,7 +48,7 @@ runs: && contains(github.event.pull_request.labels.*.name, format('publish {0}', inputs.pr-label)))) working-directory: ${{ inputs.directory }} run: | - npm publish ${{ github.event_name == 'pull_request' && format('--tag {0}', inputs.pr-version-tag) || '' }} + npm publish --tag ${{ github.event_name == 'pull_request' && inputs.pr-version-tag || 'next' }} shell: bash env: NODE_AUTH_TOKEN: ${{ inputs.npm-token }}