We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d3a1ea commit 9d7b97aCopy full SHA for 9d7b97a
.github/workflows/autopublish.yml
@@ -4,6 +4,7 @@ on:
4
push:
5
branches:
6
- master
7
+ - debug-publish
8
9
permissions:
10
contents: write
scripts/release.sh
@@ -1,3 +1,7 @@
1
#!/bin/sh
2
3
-./node_modules/.bin/lerna publish from-git --yes --registry https://registry.npmjs.org/ --no-push
+export NPM_CONFIG_PROVENANCE=${NPM_CONFIG_PROVENANCE:-true}
+export NPM_CONFIG_REGISTRY=${NPM_CONFIG_REGISTRY:-https://registry.npmjs.org/}
+export NPM_CONFIG_ACCESS=${NPM_CONFIG_ACCESS:-public}
+
+./node_modules/.bin/lerna publish from-git --yes --registry "$NPM_CONFIG_REGISTRY" --no-push --no-verify-access
0 commit comments