From: Haoqun Jiang Date: Thu, 22 Jan 2026 09:27:48 +0000 (+0900) Subject: chore: explicit target branch in push command to avoid submodule issues [skip ci] X-Git-Tag: v3.19.0~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eeea4ea8ece7c20e0d31af2942b7b2ea2ab509c7;p=thirdparty%2Fvuejs%2Fcreate-vue.git chore: explicit target branch in push command to avoid submodule issues [skip ci] --- diff --git a/scripts/postversion.mjs b/scripts/postversion.mjs index 3e099679..75d95ff2 100644 --- a/scripts/postversion.mjs +++ b/scripts/postversion.mjs @@ -23,7 +23,7 @@ try { } await $`git tag -m "v${version}" v${version}` -await $`git push --follow-tags` +await $`git push origin HEAD:main --follow-tags` const projectRoot = path.resolve(__dirname, '../') cd(projectRoot)