🐋 ci: update dev deployment script

This commit is contained in:
Danny Avila 2025-06-02 05:33:46 -04:00
parent 09e3500d39
commit d3a504857a
No known key found for this signature in database
GPG key ID: BF31EEB2C5CA0956

View file

@ -30,6 +30,7 @@ jobs:
DO_USER: ${{ secrets.DO_USER }}
run: |
ssh -o StrictHostKeyChecking=no ${DO_USER}@${DO_HOST} << EOF
sudo -i -u danny bash << 'EEOF'
cd ~/LibreChat && \
git fetch origin main && \
sudo npm run stop:deployed && \
@ -41,4 +42,5 @@ jobs:
git rebase dev && \
sudo npm run start:deployed && \
echo "Update completed. Application should be running now."
EEOF
EOF