Skip to content

Commit 01e4622

Browse files
authored
Merge pull request #15663 from JoergAtGithub/fix_apk_upload
Fix .apk upload to downloads.mixxx.org
2 parents 670e716 + c6e1daf commit 01e4622

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -637,9 +637,9 @@ jobs:
637637
ssh-keyscan "${SSH_HOST}" >> "${HOME}/.ssh/known_hosts"
638638
echo "SSH_AUTH_SOCK=${SSH_AUTH_SOCK}" >> "${GITHUB_ENV}"
639639
640-
- name: "[macOS/Windows] Upload build to downloads.mixxx.org"
640+
- name: "[Android/macOS/Windows] Upload build to downloads.mixxx.org"
641641
# skip deploying Ubuntu builds to downloads.mixxx.org because these are deployed to the PPA
642-
if: runner.os != 'Linux' && inputs.publish && env.SSH_AUTH_SOCK != null
642+
if: startsWith(matrix.artifacts_slug, 'ubuntu') != true && inputs.publish && env.SSH_AUTH_SOCK != null
643643
shell: bash --login -eo pipefail "{0}"
644644
run: rsync --verbose --recursive --checksum --times --delay-updates "deploy/" "${SSH_USER}@${SSH_HOST}:${DESTDIR}/"
645645
env:

0 commit comments

Comments
 (0)