mirror of
https://github.com/mayurankv/Obsidian-Code-Styler.git
synced 2026-07-22 08:10:29 +00:00
6 lines
303 B
JavaScript
6 lines
303 B
JavaScript
import { exec } from "child_process";
|
|
|
|
// Remove tag and re-push tag
|
|
exec(`git tag -d $npm_package_version && git push -d origin $npm_package_version && git tag -a $npm_package_version -F- <<EOF && git push origin $npm_package_version
|
|
Add release notes from changelog
|
|
EOF`,(error)=>console.log(error));
|