Skip to content

Commit 3dddd61

Browse files
committed
updated develop release workflow
1 parent bc9f2da commit 3dddd61

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/release-develop.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ jobs:
2222
- name: "Build"
2323
run: npm run build
2424

25+
- name: "NPM Identity"
26+
env:
27+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
28+
run: |
29+
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc
30+
2531
- name: Run Lerna Release
2632
run: npm run publish:canary
2733
env:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"prisma:migrate": "npx lerna run prisma:migrate",
1818
"prisma:generate": "npx lerna run prisma:generate",
1919
"commit": "cz",
20-
"publish:canary": "npx lerna publish prerelease --no-private --exact --yes --canary --preid develop --dist-tag latest --loglevel verbose --force-git-tag --force-publish",
20+
"publish:canary": "npx lerna publish prerelease --no-private --exact --yes --canary --preid develop --dist-tag latest --loglevel verbose --force-git-tag --force-publish --no-verify-access",
2121
"typedoc": "typedoc",
2222
"coverage:merge": "istanbul-merge --out coverage/coverage-final.json $(find ./coverage -name \"coverage-final.json\" -print)",
2323
"coverage:report": "nyc -t ./coverage report --reporter=text && nyc -t ./coverage report --reporter=text-summary",

0 commit comments

Comments
 (0)