We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8eaf951 commit 3313b80Copy full SHA for 3313b80
1 file changed
.github/workflows/debug-npm-auth.yml
@@ -6,6 +6,9 @@ on:
6
jobs:
7
debug:
8
runs-on: ubuntu-latest
9
+ permissions:
10
+ id-token: write
11
+ contents: read
12
steps:
13
- uses: actions/checkout@v4
14
- uses: pnpm/action-setup@v4
@@ -20,3 +23,9 @@ jobs:
20
23
echo "token length: ${#NODE_AUTH_TOKEN}"
21
24
echo "first 7 chars: ${NODE_AUTH_TOKEN:0:7}"
22
25
npm whoami --registry=https://registry.npmjs.org
26
+ - name: publish flow-builder with npm cli
27
+ env:
28
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
29
+ run: |
30
+ cd packages/flow-builder
31
+ npm publish --registry=https://registry.npmjs.org --access public --provenance
0 commit comments