Skip to content
Prev Previous commit
Next Next commit
fix: Remove no-op tagging
  • Loading branch information
mafredri committed Dec 12, 2022
commit 318be9aca5bdbc88c3729b187b3096118a239fa2
4 changes: 2 additions & 2 deletions scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ read -p "Create release? (y/n) " -n 1 -r create
echo
if [[ $create =~ ^[Yy]$ ]]; then
log "Tagging commit $ref as $new_version..."
echo git tag -a "$new_version" -m "$new_version" "$ref"
git tag -a "$new_version" -m "$new_version" "$ref"
log "Pushing tag to origin..."
echo git push -u origin "$new_version"
git push -u origin "$new_version"
fi