Fix deployment to preserve data dir in place
All checks were successful
Build and Deploy / build (push) Successful in 1m35s

Use find to delete all files except data directory instead of
moving to /tmp which fails due to sticky bit permissions.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Michael Mainguy 2025-12-30 09:48:35 -06:00
parent 739775ea94
commit 82807dcfce

View File

@ -31,11 +31,8 @@ jobs:
- name: Deploy to /opt/immersive - name: Deploy to /opt/immersive
run: | run: |
# Backup data directory if it exists # Remove old files except data directory
[ -d /opt/immersive/data ] && mv /opt/immersive/data /tmp/immersive-data find /opt/immersive -mindepth 1 -maxdepth 1 ! -name 'data' -exec rm -rf {} +
# Remove old files (except data which we moved)
rm -rf /opt/immersive/*
# Copy built files to target # Copy built files to target
cp -r . /opt/immersive/ cp -r . /opt/immersive/
@ -43,9 +40,6 @@ jobs:
# Remove unnecessary directories # Remove unnecessary directories
rm -rf /opt/immersive/.git /opt/immersive/.github rm -rf /opt/immersive/.git /opt/immersive/.github
# Restore data directory
[ -d /tmp/immersive-data ] && mv /tmp/immersive-data /opt/immersive/data
# Set permissions on start.sh # Set permissions on start.sh
chmod +x /opt/immersive/start.sh chmod +x /opt/immersive/start.sh