Skip to content

🥸 use correct main branch name in gh actions yml #1

🥸 use correct main branch name in gh actions yml

🥸 use correct main branch name in gh actions yml #1

name: Deploy to Hetzner VPS
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Deploy via SSH
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HETZNER_HOST }}
username: root
password: ${{ secrets.ACTIONS_SSH_PASSWORD }}
port: 22
script: |
cd /home/app/multiagent-rag-system/
git pull origin master
docker compose -f docker-compose.prod.yml up -d --build