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 49396a7 commit b34c03fCopy full SHA for b34c03f
.github/workflows/npmpublish.yml
@@ -9,15 +9,17 @@ jobs:
9
publish-npm:
10
runs-on: ubuntu-latest
11
environment: release
12
+ env:
13
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_ADYEN_NODE_API_LIBRARY_TOKEN }}
14
steps:
15
- uses: actions/checkout@v4
16
- uses: actions/setup-node@v4
17
with:
18
node-version: '18.x'
19
registry-url: 'https://registry.npmjs.org'
20
+ always-auth: true
21
- run: |
22
npm install
23
npm run build
24
- run: npm publish
- env:
- NODE_AUTH_TOKEN: ${{ secrets.NPM_ADYEN_NODE_API_LIBRARY_TOKEN }}
25
+
0 commit comments