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 0a69733 commit 3d6d0f9Copy full SHA for 3d6d0f9
release.sh
@@ -3,12 +3,17 @@ set -e # fail on error
3
echo "Creating a new release"
4
npm ci
5
package_version=$(cat package.json | jq -r '.version')
6
-echo "publish to npm"
7
-npm publish
+
8
# tag on github
9
echo "create tag ${package_version}"
10
-git ci -a -m "Package version ${package_version}"
+git ci -a -m "Package version ${package_version}" --allow-empty
11
git tag -a $package_version -m "Release of version $package_version"
12
git push --tags
13
+# publish to npm
14
+echo "publish to npm"
15
+npm publish --access public
16
17
# done
-echo "Done!"
18
+echo "Done"
19
+echo "Please update the releases tab here: https://github.com/daostack/arc.js/releases"
0 commit comments