From 446546d5ddf8f88743f0301fc49042d3e2f762af Mon Sep 17 00:00:00 2001 From: Diogo Matsubara Date: Thu, 21 Nov 2024 18:23:08 +0100 Subject: [PATCH] fix: align bump and tag with other projects (#41) --- ci/scripts/bump-and-tag.bash | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/scripts/bump-and-tag.bash b/ci/scripts/bump-and-tag.bash index ba886e7..7f777fb 100755 --- a/ci/scripts/bump-and-tag.bash +++ b/ci/scripts/bump-and-tag.bash @@ -39,12 +39,12 @@ cat ${package_json_path} | jq "$JQ" > "$package_tmp" mv ${package_tmp} ${package_json_path} git commit Cargo.toml ${plugin_toml_path} ${package_json_path} -m "chore: Bump version to $version" -git push --force origin ${branch} if [[ ${live_run} ]]; then git tag --force "$version" -m "v$version" - git push --force origin "$version" fi git log -10 -git show-ref --tags \ No newline at end of file +git show-ref --tags +git push origin +git push --force origin "$version" \ No newline at end of file