diff --git a/gh-action-bump-version-run.js b/gh-action-bump-version-run.js index e2e15f1..2781f30 100644 --- a/gh-action-bump-version-run.js +++ b/gh-action-bump-version-run.js @@ -41,6 +41,6 @@ const run = async () => { exec(`git tag ${newVersion}`) exec(`git push "${remoteRepo}" --follow-tags`) - exec(`git push --tags`) + exec(`git push "${remoteRepo}" --tags`) } run()