cleanup build_arch workflow
All checks were successful
Test setup and build APKs archlinux / Build-APK-Arch-Linux (push) Successful in 7m2s
Test setup and build APKs / Build-and-Create-Development-Environment (push) Successful in 11s

This commit is contained in:
2025-12-09 19:20:59 +01:00
parent 8d4d4044ef
commit 48165c9679

View File

@@ -37,4 +37,11 @@ jobs:
- name: Copy APKs to host directory - name: Copy APKs to host directory
run: | run: |
ls -al src/**/build export APKS=$(find src -type f -name "*.apk")
echo "Found APKs: $APKS"
export APK_DIRS=$(dirname $APKS | sort -u)
echo "APK directories: $APK_DIRS"
for dir in $APK_DIRS; do
mkdir -p /prod/data/apk/$dir
cp $dir/*.apk /prod/data/apk/$dir/
done