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 41477d1 commit e25c10fCopy full SHA for e25c10f
release.sh
@@ -1,12 +1,12 @@
1
#!/bin/bash
2
set -e # fail on error
3
echo "Creating a new release"
4
-npm ci
+# npm ci
5
package_version=$(cat package.json | jq -r '.version')
6
7
# tag on github
8
echo "create tag ${package_version}"
9
-git ci -a -m "Package version ${package_version}"
+git ci -a -m "Package version ${package_version}" --allow-empty
10
git tag -a $package_version -m "Release of version $package_version"
11
git push --tags
12
0 commit comments