This repository has been archived on 2024-05-11. You can view files and clone it, but cannot push or open issues or pull requests.
Corn-Utility/.gitea/workflows/deploy_container.yml
Renovate 90ba834704
All checks were successful
Build and push container image / build (push) Successful in 41s
Update appleboy/ssh-action action to v1.0.3 (#68)
Co-authored-by: Renovate <system@toast-server.net>
Co-committed-by: Renovate <system@toast-server.net>
2024-01-07 11:43:31 +00:00

23 lines
663 B
YAML

name: Deploy to production
on:
registry_package:
types: [published]
jobs:
deploy:
runs-on: ubuntu-22.04-node
steps:
- name: SSH into Docker Host
uses: appleboy/ssh-action@029f5b4aeeeb58fdfe1410a5d17f967dacf36262 # v1.0.3
with:
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USERNAME }}
passphrase: ${{ secrets.SSH_PASSPHRASE }}
key: ${{ secrets.SSH_PRVKEY }}
port: ${{ secrets.SSH_PORT }}
script: |
cd corn-util && \
docker compose pull && \
docker compose up -d --remove-orphans && \
docker image prune -f