build: do not mark nightly builds as pre-release on codeberg

This commit is contained in:
CJ van den Berg 2025-09-23 13:22:13 +02:00
parent 5445651776
commit f2b1451b3e
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -147,10 +147,10 @@ if [ -z "$NO_CODEBERG" ]; then
ASSETS="$ASSETS --asset $a" ASSETS="$ASSETS --asset $a"
done done
echo uploading to codeberg.org echo uploading to codeberg.org
tea releases create --login codeberg --repo "$repo" --tag "$VERSION" --title "$title $VERSION" --note-file "$release_notes" --prerelease $ASSETS tea releases create --login codeberg --repo "$repo" --tag "$VERSION" --title "$title $VERSION" --note-file "$release_notes" $ASSETS
fi fi
if [ -z "$NO_FLOWCONTROL" ]; then if [ -z "$NO_FLOWCONTROL" ]; then
echo uploading to git.flow-control.dev echo uploading to git.flow-control.dev
tea releases create --login flow-control --repo "$repo" --tag "$VERSION" --title "$title $VERSION" --note-file "$release_notes" --prerelease tea releases create --login flow-control --repo "$repo" --tag "$VERSION" --title "$title $VERSION" --note-file "$release_notes"
fi fi