CI: Fix source upload path

This commit is contained in:
Jonas Kvinge 2024-09-17 23:15:01 +02:00
parent d578d3c66d
commit 037b0d7dea
1 changed files with 1 additions and 1 deletions

View File

@ -1548,7 +1548,7 @@ jobs:
upload_path="${{secrets.RELEASES_PATH}}/"
else
distro=$(echo "$i" | cut -d '/' -f 2)
if [ "$(echo "$i" | grep '-' || true)" = "" ]; then
if [ -z "$(echo "${distro}" | grep '-' || true)" ]; then
upload_path="${{secrets.BUILDS_PATH}}/${distro}/"
else
distro_name=$(echo "${distro}" | cut -d '-' -f 1)