We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d69f5c5 commit f0bc92fCopy full SHA for f0bc92f
1 file changed
.github/workflows/release.yml
@@ -113,7 +113,7 @@ jobs:
113
run: |
114
set -euo pipefail
115
shopt -s nullglob
116
- for tgz in dist-tarballs/*.tgz; do
+ for tgz in ./dist-tarballs/*.tgz; do
117
echo "Publishing $tgz to npmjs.org with tag '${PUBLISH_TAG}' ..."
118
# --access public needed for first publish of public packages
119
npm publish "$tgz" --provenance --access public --tag "${PUBLISH_TAG}"
@@ -145,7 +145,7 @@ jobs:
145
146
147
148
149
echo "Publishing $tgz to GitHub Packages with tag '${PUBLISH_TAG}' ..."
150
# GitHub Packages does not support npm provenance; omit --provenance and --access
151
npm publish "$tgz" --tag "${PUBLISH_TAG}"
0 commit comments