From d7a393e7d7ffe7e2542fb9d394e23b3fd9bff20c Mon Sep 17 00:00:00 2001 From: phips28 Date: Sat, 26 Oct 2019 20:30:39 +0200 Subject: [PATCH] fix git push --- gh-action-bump-version-run.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()