Dont remove demos folder
Some checks failed
/ deploy (push) Failing after 8s

This commit is contained in:
Kamil Patecki 2025-08-29 00:03:55 +02:00
parent a7b4eaa6a6
commit 8ced2b2a60

View file

@ -18,7 +18,8 @@ jobs:
run: npm run build
- name: Deploy to web server
run: |
sudo rm -rf /var/www/otomata/*
sudo cp -r _site/* /var/www/otomata/
sudo chown -R www-data:www-data /var/www/otomata
sudo chmod -R 755 /var/www/otomata
find /var/www/otomata -maxdepth 1 -type f -delete
find /var/www/otomata -maxdepth 1 -type d ! -name demos ! -name otomata -exec rm -rf {} +
cp -r _site/* /var/www/otomata/
chown -R www-data:www-data /var/www/otomata
chmod -R 755 /var/www/otomata