Deploy to prod server #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy to prod server | |
# when prod image build action is completed, run this action | |
on: | |
workflow_run: | |
workflows: ["Build docker image on release tag created"] | |
types: | |
- completed | |
jobs: | |
if_workflow_success: | |
name: Deploy to prod server | |
runs-on: ubuntu-latest | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
steps: | |
- name: pull the image and restart the container | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.PROD_HOST }} | |
port: ${{ secrets.PROD_PORT }} | |
username: ${{ secrets.PROD_USERNAME }} | |
password: ${{ secrets.PROD_PASSWORD }} | |
proxy_host: ${{ secrets.PROD_PROXY_HOST }} | |
proxy_port: ${{ secrets.PROD_PROXY_PORT }} | |
proxy_username: ${{ secrets.PROD_PROXY_USERNAME }} | |
proxy_password: ${{ secrets.PROD_PROXY_PASSWORD }} | |
script_stop: true # stop script if any command has failed | |
script: | | |
cd ${{ secrets.PROD_WORKING_DIRECTORY }} | |
docker compose -f .docker/docker-compose.yml -p zabo --env-file=.docker/.env.prod pull | |
docker compose -f .docker/docker-compose.yml -p zabo --env-file=.docker/.env.prod up --force-recreate --build -d |