Skip to content

Commit

Permalink
fix: align bump and tag with other projects (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
diogomatsubara authored Nov 21, 2024
1 parent e13def4 commit 446546d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ci/scripts/bump-and-tag.bash
Original file line number Diff line number Diff line change
Expand Up @@ -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
git show-ref --tags
git push origin
git push --force origin "$version"

0 comments on commit 446546d

Please sign in to comment.