Skip to content

Commit

Permalink
git push before git tag in bump_version scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
FaustVX committed May 18, 2024
1 parent 141aefb commit 56133db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bump_version.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ else
git commit -am "Bumped version ``$version``"
}

git tag $version
git push
git tag $version
git push --tags
2 changes: 1 addition & 1 deletion bump_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ else
exit false
fi

git tag "$version"
git push
git tag "$version"
git push --tags

0 comments on commit 56133db

Please sign in to comment.