Compare commits

..

No commits in common. "main" and "8.0.3" have entirely different histories.
main ... 8.0.3

2 changed files with 3 additions and 8 deletions

View file

@ -1 +1 @@
9.0.0 8.0.3

View file

@ -29,8 +29,6 @@ echo "Update git repo:"
git pull git pull
echo "done." echo "done."
echo "Latest published release: $( /usr/bin/git tag | tail -n 1 )"
LATEST="$1" LATEST="$1"
if [ -z "$LATEST" ] if [ -z "$LATEST" ]
@ -40,10 +38,10 @@ then
echo done. echo done.
fi fi
echo "Latest upstream release: $LATEST" echo "Latest release: $LATEST"
[ -n "$( /usr/bin/git tag -l "$LATEST" )" ] && echo "Release $LATEST already exists" && exit 1 [ -n "$( /usr/bin/git tag -l "$LATEST" )" ] && echo "Release $LATEST already exists" && exit 1
echo "Press [enter] to create and publish this new release $LATEST" echo "Press [enter] to create and publish this new release"
read read
echo "Create new release..." echo "Create new release..."
@ -57,6 +55,3 @@ echo "Publish new release..."
/usr/bin/git push /usr/bin/git push
/usr/bin/git push --tags /usr/bin/git push --tags
echo done. echo done.
echo "Not release $LATEST published. Follow build process there:"
echo "https://gitea.zionetrix.net/bn8/forgejo_debian_packager/actions"