gateway/.forgejo/workflows/deploy.yml
Ida 6fd9ce736d
Some checks failed
Deploy Gateway / deploy (push) Failing after 2s
add forgejo deploy workflow
2026-04-20 19:48:07 +02:00

26 lines
596 B
YAML

name: Deploy Gateway
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Deploy to Infomaniak VM
uses: appleboy/ssh-action@v1.0.3
with:
host: api.poweron.swiss
username: ubuntu
key: ${{ secrets.SSH_PRIVATE_KEY }}
script: |
cd /srv/gateway/current
git pull
source .venv/bin/activate
pip install -r requirements.txt --no-cache-dir
sudo systemctl restart gateway