File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 21
21
22
22
- uses : actions/setup-node@v3
23
23
with :
24
- node-version : ' 18'
24
+ node-version : 18
25
+ registry-url : https://registry.npmjs.org
25
26
26
27
- name : publish
27
28
run : ./scripts/publish-dev.sh
28
29
env :
29
- NODE_AUTH_TOKEN : ${{secrets.npm_token}}
30
+ NODE_AUTH_TOKEN : ${{ secrets.npm_token }}
Original file line number Diff line number Diff line change @@ -20,13 +20,16 @@ jobs:
20
20
21
21
- uses : actions/setup-node@v3
22
22
with :
23
- node-version : ' 18'
23
+ node-version : 18
24
+ registry-url : https://registry.npmjs.org
24
25
25
26
- name : publish
26
27
run : |
27
28
npm ci
28
29
npm run build
29
30
npm publish --access public
31
+ env :
32
+ NODE_AUTH_TOKEN : ${{ secrets.npm_token }}
30
33
31
34
deploy-typedoc :
32
35
needs : test
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ npm version --preid dev --no-git-tag-version --no-commit-hooks prepatch
6
6
TIME=$( date -u +%Y%m%d%H%M%S)
7
7
sed -i " /version/s/dev.0/dev.$TIME /g" package.json
8
8
PUBLISH_VERSION=$( cat package.json | jq -r ' .version' )
9
- echo publishing @massalabs/massa-as-sdk @$PUBLISH_VERSION
9
+ echo publishing @massalabs/sc-standards @$PUBLISH_VERSION
10
10
11
11
# disable husky
12
12
npm pkg delete scripts.prepare
You can’t perform that action at this time.
0 commit comments