Skip to content

Commit e499299

Browse files
committed
rephrase the token
1 parent b20c3da commit e499299

10 files changed

+13
-10
lines changed

.github/workflows/nodejs.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -82,5 +82,8 @@ jobs:
8282

8383
- name: Publish to npm
8484
run: |
85-
echo '//registry.npmjs.org/:_authToken=${ secrets.JSSM_PUBLISH_TOKEN_FOR_GH_CI_CD }' > .npmrc
85+
echo '//registry.npmjs.org/:_authToken=${ NODE_AUTH_TOKEN }' > .npmrc
86+
cat .npmrc
8687
npm publish
88+
env:
89+
NODE_AUTH_TOKEN: ${{ secrets.JSSM_PUBLISH_TOKEN_FOR_GH_CI_CD }}

dist/es6/version.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
const version = "5.41.12";
1+
const version = "5.41.14";
22
export { version };

dist/jssm.es5.cjs.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jssm.es5.cjs.nonmin.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15885,7 +15885,7 @@ function peg$parse(input, options) {
1588515885
}
1588615886
}
1588715887

15888-
const version = "5.41.12";
15888+
const version = "5.41.14";
1588915889

1589015890
// whargarbl lots of these return arrays could/should be sets
1589115891
/* eslint-disable complexity */

dist/jssm.es5.iife.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jssm.es5.iife.nonmin.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15884,7 +15884,7 @@ var jssm = (function (exports) {
1588415884
}
1588515885
}
1588615886

15887-
const version = "5.41.12";
15887+
const version = "5.41.14";
1588815888

1588915889
// whargarbl lots of these return arrays could/should be sets
1589015890
/* eslint-disable complexity */

docs/docs/classes/Machine.html

+1-1
Large diffs are not rendered by default.

docs/docs/modules.html

+1-1
Large diffs are not rendered by default.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jssm",
3-
"version": "5.41.12",
3+
"version": "5.41.14",
44
"engines": {
55
"node": ">=10.0.0"
66
},

src/ts/version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11

2-
const version: string = "5.41.12";
2+
const version: string = "5.41.14";
33
export { version };

0 commit comments

Comments
 (0)