Kon/.gitea/workflows/deploy.yml

20 lines
610 B
YAML
Raw Normal View History

2023-12-08 06:25:57 -05:00
name: Deploy to host
on:
registry_package:
types: [published]
jobs:
deploy:
runs-on: ubuntu-22.04-node
steps:
- name: SSH into Docker Host
uses: appleboy/ssh-action@4330a1ea489ced98a6778fb35bb6bfed8b61fca5
2023-12-08 06:25:57 -05:00
with:
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USERNAME }}
passphrase: ${{ secrets.SSH_PASSPHRASE }}
key: ${{ secrets.SSH_KEY }}
port: ${{ secrets.SSH_PORT }}
script: |
cd kon && docker compose pull && \
docker compose up -d --remove-orphans && docker image prune -f