Skip to content

Commit 9d7b97a

Browse files
committed
Debug publish
1 parent 6d3a1ea commit 9d7b97a

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/autopublish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches:
66
- master
7+
- debug-publish
78

89
permissions:
910
contents: write

scripts/release.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
#!/bin/sh
22

3-
./node_modules/.bin/lerna publish from-git --yes --registry https://registry.npmjs.org/ --no-push
3+
export NPM_CONFIG_PROVENANCE=${NPM_CONFIG_PROVENANCE:-true}
4+
export NPM_CONFIG_REGISTRY=${NPM_CONFIG_REGISTRY:-https://registry.npmjs.org/}
5+
export NPM_CONFIG_ACCESS=${NPM_CONFIG_ACCESS:-public}
6+
7+
./node_modules/.bin/lerna publish from-git --yes --registry "$NPM_CONFIG_REGISTRY" --no-push --no-verify-access

0 commit comments

Comments
 (0)