Enhance workflow with build and clean steps

Add build and clean steps to the workflow.
This commit is contained in:
Dominik
2025-11-02 09:45:41 +01:00
committed by GitHub
parent 082f68ea79
commit e46b04d8e4
+6
View File
@@ -25,6 +25,9 @@ jobs:
cd /home/agres/website
git pull origin main
# Build Project
make build
# Copy compiled Hugo site to web root
sudo rsync -av --delete --no-group --no-owner /home/agres/website/blog/public/ /var/www/html/
@@ -33,3 +36,6 @@ jobs:
# Reload Nginx
sudo systemctl reload nginx
# Clean
make clean