fix: fix CI secret syntax

This commit is contained in:
Yarmo Mackenbach 2024-06-15 20:48:13 +02:00
parent 687b98292d
commit e5e43badbc
No known key found for this signature in database
GPG key ID: C248C28D432560ED
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@ steps:
image: node:20
commands:
- npm ci
- npm config set -- '//registry.npmjs.org/:_authToken' "${npm_token}"
- npm config set -- '//registry.npmjs.org/:_authToken' "$npm_token"
- npm publish --verbose --tag next
secrets: [ npm_token ]

View file

@ -6,7 +6,7 @@ steps:
image: node:20
commands:
- npm ci
- npm config set -- '//registry.npmjs.org/:_authToken' "${npm_token}"
- npm config set -- '//registry.npmjs.org/:_authToken' "$npm_token"
#- npm publish --verbose
secrets: [ npm_token ]