We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ccb0d3 commit e826a21Copy full SHA for e826a21
.github/workflows/publish-tag.yml
@@ -41,10 +41,14 @@ jobs:
41
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
42
run: npm audit signatures
43
44
- - name: Set version, build and publish to NPM, tag the release and push the changes
+ - name: Login to npm registry
45
env:
46
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
47
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
+ run: |
48
+ npm login
49
+ npm whoami
50
+
51
+ - name: Set version, build and publish to NPM, tag the release and push the changes
52
run: |
53
set -x
54
npm version ${{ github.event.inputs.version }} --no-git-tag-version
0 commit comments