Compare commits
3 commits
76e7de6d53
...
efabda309b
Author | SHA1 | Date | |
---|---|---|---|
efabda309b | |||
ac512f5bde | |||
618ed2bb5c |
1 changed files with 7 additions and 4 deletions
|
@ -21,10 +21,10 @@ old="${last_tag#?}"
|
||||||
|
|
||||||
if [ "$1" = "--autoupdate" ]; then
|
if [ "$1" = "--autoupdate" ]; then
|
||||||
new="$2"
|
new="$2"
|
||||||
autogit="y"
|
autoupdate="y"
|
||||||
else
|
else
|
||||||
new="$1"
|
new="$1"
|
||||||
autogit="n"
|
autoupdate="n"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
name="$(git config --get user.name)"
|
name="$(git config --get user.name)"
|
||||||
|
@ -52,13 +52,16 @@ cd ..
|
||||||
|
|
||||||
rm "$PACKAGE"_"$old"-*
|
rm "$PACKAGE"_"$old"-*
|
||||||
|
|
||||||
if [ "$autogit" = "n" ]; then
|
if [ "$autoupdate" = "n" ]; then
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
git add -A
|
||||||
|
git commit -m "Upstream version $new"
|
||||||
|
|
||||||
git switch main
|
git switch main
|
||||||
git merge --ff-only version-"$new"
|
git merge --ff-only version-"$new"
|
||||||
git push origin main
|
git push origin main
|
||||||
|
|
||||||
git tag -s v"$new" "Upstream version $new"
|
git tag -a v"$new" "Upstream version $new"
|
||||||
git push --tags origin main
|
git push --tags origin main
|
||||||
|
|
Loading…
Add table
Reference in a new issue