fix: permissions
All checks were successful
Deploy Website / deploy (push) Successful in 18s

This commit is contained in:
2025-10-30 16:02:45 +00:00
parent 25b72e6c2d
commit 089c6f0ae1

View File

@@ -21,6 +21,6 @@ jobs:
- name: 3. Set permissions
run: |
echo "Setting web server permissions..."
chown -R www-data:www-data /mnt/deployment
find /mnt/deployment -type d -exec chmod 755 {} \;
find /mnt/deployment -type f -exec chmod 644 {} \;
chown -R www-data:www-data /mnt/deploy
find /mnt/deploy -type d -exec chmod 755 {} \;
find /mnt/deploy -type f -exec chmod 644 {} \;