Deploy stage #10
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 stage | |
on: | |
workflow_run: | |
workflows: ["Build, publish"] | |
types: | |
- completed | |
workflow_dispatch: | |
jobs: | |
deploy-backend: | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} || github.event_name == 'workflow_dispatch' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Connect, pull from repo and restart docker | |
uses: appleboy/[email protected] | |
env: | |
REMOTE_DIR: /root/owwo | |
DOCKER_COMPOSE_NAME: docker-compose.yml | |
REPOSITORY: ${{ github.repository }} | |
REPOSITORY_OWNER: ${{ github.repository_owner }} | |
TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
host: ${{ secrets.HOST_STAGE }} | |
username: ${{ secrets.USER_STAGE }} | |
key: ${{ secrets.KEY_STAGE }} | |
port: ${{ secrets.PORT_STAGE }} | |
debug: true | |
script_stop: true | |
envs: REMOTE_DIR,DOCKER_COMPOSE_NAME,REPOSITORY_OWNER,REPOSITORY,TOKEN | |
script: | | |
REPOSITORY_LOWER=$(echo "$REPOSITORY" | tr '[:upper:]' '[:lower:]') | |
SYSTEM_IMAGE_NAME=ghcr.io/$REPOSITORY_LOWER-system | |
SITE_IMAGE_NAME=ghcr.io/$REPOSITORY_LOWER-site | |
echo $TOKEN | docker login ghcr.io -u $REPOSITORY_OWNER --password-stdin | |
docker rm -f $SYSTEM_IMAGE_NAME:latest || true | |
docker rm -f $SITE_IMAGE_NAME:latest || true | |
docker image rm -f $SYSTEM_IMAGE_NAME:latest || true | |
docker image rm -f $SITE_IMAGE_NAME:latest || true | |
docker image prune -f | |
docker image pull $SYSTEM_IMAGE_NAME:latest | |
docker image pull $SITE_IMAGE_NAME:latest | |
cd $REMOTE_DIR | |
docker compose up -d |