We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd24a08 commit 4c2359bCopy full SHA for 4c2359b
1 file changed
.github/workflows/ci.yml
@@ -125,11 +125,11 @@ jobs:
125
run: |
126
if [ "${{ steps.version-check.outputs.is_prerelease }}" == "true" ]; then
127
echo "Publishing untagged prerelease"
128
- npm publish --provenance --tag test
+ npm stage publish --provenance --tag test
129
# We have to publish with a tag (so we use 'test') but we can clean it up:
130
npm dist-tag rm mockttp test --silent
131
else
132
echo "Publishing stable release with 'latest' tag"
133
- npm publish --provenance
+ npm stage publish --provenance
134
fi
135
0 commit comments