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.
next
1 parent de1979b commit 6122f52Copy full SHA for 6122f52
.github/workflows/cd.yml
@@ -30,3 +30,7 @@ jobs:
30
- run: npm ci
31
- run: npm run build
32
- run: npm publish
33
+ if: "!github.event.release.prerelease"
34
+ # npm requires explicitly specifying a "tag" like `next` if the semantic version is a prerelease like `2.0.0-alpha1`
35
+ - run: npm publish --tag next
36
+ if: github.event.release.prerelease
0 commit comments