Skip to content

Commit

Permalink
add release
Browse files Browse the repository at this point in the history
  • Loading branch information
pong3ds committed Feb 26, 2023
1 parent b194bad commit 1179d1c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/bash

new=$1

if [ "$new" = "" ]; then
echo -e "Must specify New tags (for create): Example command should be ./release.sh 2.0"
exit 1
fi

git fetch
git push
git tag -a $new -m "Release $new"
git push origin $new

0 comments on commit 1179d1c

Please sign in to comment.