build: reverse upload order of nightly builds

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

View file

@ -136,9 +136,9 @@ cd ..
cat "$release_notes" cat "$release_notes"
if [ -z "$NO_GITHUB" ]; then if [ -z "$NO_FLOWCONTROL" ]; then
echo uploading to github.com echo uploading to git.flow-control.dev
gh release create "$VERSION" --repo "$repo" --notes-file "$release_notes" $DESTDIR/* tea releases create --login flow-control --repo "$repo" --tag "$VERSION" --title "$title $VERSION" --note-file "$release_notes"
fi fi
if [ -z "$NO_CODEBERG" ]; then if [ -z "$NO_CODEBERG" ]; then
@ -150,7 +150,7 @@ if [ -z "$NO_CODEBERG" ]; then
tea releases create --login codeberg --repo "$repo" --tag "$VERSION" --title "$title $VERSION" --note-file "$release_notes" $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_GITHUB" ]; then
echo uploading to git.flow-control.dev echo uploading to github.com
tea releases create --login flow-control --repo "$repo" --tag "$VERSION" --title "$title $VERSION" --note-file "$release_notes" gh release create "$VERSION" --repo "$repo" --notes-file "$release_notes" $DESTDIR/*
fi fi