mirror of
https://codeberg.org/keyoxide/doipjs.git
synced 2024-12-22 14:39:28 -07:00
fix: fix CI secret syntax
This commit is contained in:
parent
687b98292d
commit
e5e43badbc
2 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@ steps:
|
||||||
image: node:20
|
image: node:20
|
||||||
commands:
|
commands:
|
||||||
- npm ci
|
- 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
|
- npm publish --verbose --tag next
|
||||||
secrets: [ npm_token ]
|
secrets: [ npm_token ]
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ steps:
|
||||||
image: node:20
|
image: node:20
|
||||||
commands:
|
commands:
|
||||||
- npm ci
|
- npm ci
|
||||||
- npm config set -- '//registry.npmjs.org/:_authToken' "${npm_token}"
|
- npm config set -- '//registry.npmjs.org/:_authToken' "$npm_token"
|
||||||
#- npm publish --verbose
|
#- npm publish --verbose
|
||||||
secrets: [ npm_token ]
|
secrets: [ npm_token ]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue