[vlc-commits] [Git][videolan/vlc][master] CI: fix the macos nightlies filename
Steve Lhomme (@robUx4)
gitlab at videolan.org
Thu Sep 18 06:15:40 UTC 2025
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
59dcf544 by Steve Lhomme at 2025-09-18T05:33:55+00:00
CI: fix the macos nightlies filename
basename on a file that doesn't exist just returns the filename with the wildcard.
- - - - -
1 changed file:
- extras/ci/gitlab-ci.yml
Changes:
=====================================
extras/ci/gitlab-ci.yml
=====================================
@@ -535,8 +535,8 @@ macos-arm64:
- if: '$CI_PIPELINE_SOURCE == "schedule"'
after_script:
- mkdir nightlies
- - mv vlc-*.dmg nightlies/$(basename build/vlc-*.dmg | sed "s/\.dmg/-${SHORTARCH}-${CI_COMMIT_SHORT_SHA}\.dmg/")
- - mv vlc-*.tar.gz nightlies/$(basename build/vlc-*.tar.gz | sed "s/\.tar\.gz/-${SHORTARCH}-${CI_COMMIT_SHORT_SHA}\.tar\.gz/")
+ - mv vlc-*.dmg nightlies/$(basename vlc-*.dmg | sed "s/\.dmg/-${SHORTARCH}-${CI_COMMIT_SHORT_SHA}\.dmg/")
+ - mv vlc-*.tar.gz nightlies/$(basename vlc-*.tar.gz | sed "s/\.tar\.gz/-${SHORTARCH}-${CI_COMMIT_SHORT_SHA}\.tar\.gz/")
- cd nightlies && find . -maxdepth 1 -type f -not -name SHA512SUM | xargs shasum -a 512 | tee SHA512SUM
artifacts:
paths:
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/59dcf544ad58ec7a64a524a5c535e6735e88738f
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/59dcf544ad58ec7a64a524a5c535e6735e88738f
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the vlc-commits
mailing list