File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -95,13 +95,15 @@ jobs:
9595
9696 - name : Move binaries
9797 uses : ./.github/actions/move-artifacts
98-
9998 - name : Publish npm packages
10099 if : ${{ inputs.dry_run == false }}
101- env :
102- NPM_TOKEN : ${{ secrets.RSLINT_NPM_TOKEN }}
103100 run : |
104101 pnpm -r publish --no-git-checks --tag ${{ github.event.inputs.npm_tag }} --publish-branch ${{ github.event.inputs.branch }}
102+ git config --global user.email "github-actions[bot]@users.noreply.github.com"
103+ git config --global user.name "github-actions"
104+ echo git tag v$(jq -r .version package.json)
105+ git tag v$(jq -r .version package.json)
106+ git push origin --follow-tags
105107
106108 publish-extension-vscode :
107109 if : ${{ inputs.to_release == 'all' || inputs.to_release == 'extension' }}
You can’t perform that action at this time.
0 commit comments