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 a1581fc commit 884d017Copy full SHA for 884d017
deploy.sh
@@ -1,4 +1,10 @@
1
#!/usr/bin/env bash
2
3
+# check this version is enable to release or not
4
+npx can-npm-publish
5
+if [ $? -eq 1 ] ; then
6
+ exit 255
7
+fi
8
+
9
npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN
10
npm publish
0 commit comments