TEST: Testing permissions change
Some checks failed
Zabbix APK Builder / check-version (push) Successful in 12s
Zabbix APK Builder / update-version (push) Has been skipped
Zabbix APK Builder / build-packages (push) Successful in 5m12s
Zabbix APK Builder / deploy-test (push) Failing after 3s

This commit is contained in:
2025-09-04 15:46:48 +02:00
parent 7986278926
commit 44b4aa9e7a
2 changed files with 7 additions and 1 deletions

View File

@@ -51,7 +51,13 @@ sudo -u builder sh -c "
echo "Copying packages to output..."
find /home/builder/packages -name '*.apk' -exec cp {} /output/ \;
chmod 644 /output/*.apk
# Make files readable and writable by everyone (fixes permission issues)
chmod 666 /output/*.apk 2>/dev/null || true
# Also try changing ownership to a generic user ID that should work
# Use UID 1000 which is common for CI runners
chown 1000:1000 /output/*.apk 2>/dev/null || true
echo "Build complete! Packages:"
ls -la /output/

0
zabbix-apk-builder/build.sh Normal file → Executable file
View File