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 6060d6aCopy full SHA for 6060d6a
.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
package.json
@@ -2,7 +2,7 @@
2
"name": "roslib",
3
"homepage": "https://robotwebtools.github.io",
4
"description": "The standard ROS Javascript Library",
5
- "version": "2.0.0-alpha3",
+ "version": "2.0.0-alpha4",
6
"license": "BSD-2-Clause",
7
"files": [
8
"dist"
0 commit comments