convert-csv-to-json 2.16.1 → 2.16.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/semantic-versioning.sh +7 -5
package/package.json
CHANGED
package/semantic-versioning.sh
CHANGED
|
@@ -37,11 +37,13 @@ echo "New version successfully published."
|
|
|
37
37
|
|
|
38
38
|
push_git_info(){
|
|
39
39
|
echo "Publish git info...";
|
|
40
|
-
TAG=$(git describe --tags --abbrev=0)
|
|
41
|
-
git
|
|
42
|
-
|
|
43
|
-
git
|
|
44
|
-
git
|
|
40
|
+
TAG=$(git describe --tags --abbrev=0);
|
|
41
|
+
COMMIT_ID=$(git rev-parse HEAD);
|
|
42
|
+
git commit --amend -m "new release $TAG [skip ci]";
|
|
43
|
+
echo "new commit message: $(git log -1 --pretty=format:"%s")";
|
|
44
|
+
git tag $TAG $COMMIT_ID;
|
|
45
|
+
git push;
|
|
46
|
+
git push origin refs/tags/$TAG;
|
|
45
47
|
}
|
|
46
48
|
|
|
47
49
|
execute-new-release(){
|