Skip to content

Commit

Permalink
Merge branch 'add-build-server-support-for-additional-android-artifacts'
Browse files Browse the repository at this point in the history
  • Loading branch information
albin-mullvad committed Oct 20, 2023
2 parents 61f8d70 + 524f5cc commit 2865b64
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ci/buildserver-upload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ while true; do
files=$(awk '{print $2}' < "$checksums_path")
for file in $files; do
file_upload_dir="$upload_path/$version"
if [[ ! $file == MullvadVPN-* ]]; then
if [[ $platform == "desktop" && ! $file == MullvadVPN-* ]]; then
file_upload_dir="$file_upload_dir/additional-files"
elif [[ $platform == "android" && ! $file =~ MullvadVPN-"$version"(.apk|.play.aab) ]]; then
file_upload_dir="$file_upload_dir/additional-files"
fi

Expand Down

0 comments on commit 2865b64

Please sign in to comment.