Skip to content
This repository was archived by the owner on Mar 17, 2024. It is now read-only.

Commit 39a2b6d

Browse files
committed
Add whoami output to verify login
1 parent 448fb18 commit 39a2b6d

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/snapshot_release.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ jobs:
5454
- name: Create snapshot release
5555
run: bash ./.build/pre-release.sh
5656
- name: Publish snapshot release to npm
57-
run: npm run publish-next
57+
run: |
58+
npm whoami
59+
npm run publish-next
5860
env:
5961
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/tagged_release.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ jobs:
5050
- name: Install
5151
run: npm ci
5252
- name: Publish tagged release to npm
53-
run: npm publish
53+
run: |
54+
npm whoami
55+
npm publish
5456
env:
5557
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)