Skip to content

Commit 54893d5

Browse files
committed
fix: prefix npm tgz paths with ./ to prevent git URL interpretation
1 parent 852a185 commit 54893d5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
registry-url: "https://registry.npmjs.org"
105105
- name: Publish all packages with provenance
106106
run: |
107-
for pkg in dist-npm/*.tgz; do
107+
for pkg in ./dist-npm/*.tgz; do
108108
npm publish "$pkg" --access public
109109
done
110110
env:

0 commit comments

Comments
 (0)