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 76568bf commit 0878ad9Copy full SHA for 0878ad9
.github/workflows/ci.yml
@@ -88,8 +88,10 @@ jobs:
88
- name: Publish to npm
89
run: |
90
if [ "${{ steps.version-check.outputs.is_prerelease }}" == "true" ]; then
91
- echo "Publishing prerelease without a tag"
92
- npm publish --provenance --no-tag
+ echo "Publishing untagged prerelease"
+ npm publish --provenance --tag test
93
+ # We have to publish with a tag (so we use 'test') but we can clean it up:
94
+ npm dist-tag rm mockttp test --silent
95
else
96
echo "Publishing stable release with 'latest' tag"
97
npm publish --provenance
0 commit comments