Skip to content

Deploy to production #47

Deploy to production

Deploy to production #47

Workflow file for this run

name: Deploy to production
on:
registry_package:
workflow_dispatch:
jobs:
deploy_to_machine:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup remote context
uses: amirmarmul/docker-context-ssh-action@v2.1.3
with:
ssh-host: ${{ secrets.SSH_TARGET }}
ssh-username: root
ssh-private-key: ${{ secrets.SSH_KEY }}
context-name: remote
context-use: true
- name: Check new images
run: docker compose pull
- name: Deploy
run: docker compose up -d