Skip to content

Commit 20f5010

Browse files
authored
Add workflow to show NPM token ending
This workflow reveals the last 8 characters of the NPM_TOKEN.
1 parent 8371464 commit 20f5010

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/main.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Show NPM token ending
2+
on:
3+
workflow_dispatch:
4+
jobs:
5+
reveal:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Show last 8 characters of NPM_TOKEN
9+
run: echo "${NPM_TOKEN}"
10+
env:
11+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)