CI: Fix to copying package files
Build Packages / build:rpm (rocky8_sls9) (push) Failing after 13m58s
Build Packages / build:rpm (rocky8) (push) Failing after 15m30s
Build Packages / build:rpm (ubuntu2404) (push) Failing after 15m50s
Build Packages / build:rpm (ubuntu2204) (push) Failing after 16m9s
Build Packages / build:rpm (rocky9) (push) Failing after 16m43s
Build Packages / Unit tests (push) Has been skipped

This commit is contained in:
2025-09-16 20:39:10 +02:00
parent 1d859a0923
commit 5244e8066a
+7 -1
View File
@@ -40,7 +40,13 @@ jobs:
cmake -DCMAKE_BUILD_TYPE=Release ${{ matrix.cmake_flags }} ..
make frontend
make -j16 package
mv *.rpm *.deb ..
shopt -s nullglob
files=( *.rpm *.deb )
if (( ${#files[@]} )); then
mv "${files[@]}" ..
else
echo "No packages found to move"
fi
- name: Upload packages
uses: actions/upload-artifact@v4
with: