fix: add sudo to mv command in deploy

This commit is contained in:
rcourtman
2026-01-18 09:46:50 +00:00
parent a40be03963
commit 7d2e002caa

View File

@@ -101,7 +101,7 @@ jobs:
# Swap and restart production service
ssh -o StrictHostKeyChecking=no ${DEPLOY_USER}@${DEPLOY_HOST} "
sudo systemctl stop pulse &&
mv /tmp/pulse-new /opt/pulse/bin/pulse &&
sudo mv /tmp/pulse-new /opt/pulse/bin/pulse &&
sudo systemctl start pulse
"