forgejo-update-script/update.sh
Neshura ae839c5dce Add update.sh
Should work out of the box, needs to be tested next release
2023-11-07 10:18:51 +00:00

10 lines
343 B
Bash

#!/bin/bash
echo -n "Forgejo Tag to Download: "
read version
wget -O /root/forgejo https://codeberg.org/forgejo/forgejo/releases/tag/$version/forgejo-$version-linux-amd64
systemctl stop forgejo
cp /root/forgejo /usr/local/bin/forgejo
chmod 755 /usr/local/bin/forgejo
systemctl start forgejo
rm /root/forgejo
echo "Forgejo Updated succesfully!"