add forgejo deploy workflow
Some checks failed
Deploy Gateway / deploy (push) Failing after 2s

This commit is contained in:
Ida 2026-04-20 19:48:07 +02:00
parent 507fd54388
commit 6fd9ce736d

View file

@ -0,0 +1,26 @@
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