Emit update on ready #21
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 | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Configure SSH | |
run: | | |
mkdir -p ~/.ssh/ | |
echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa | |
chmod 600 ~/.ssh/id_rsa | |
ssh-keyscan -t rsa $SERVER_IP >> ~/.ssh/known_hosts | |
env: | |
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} | |
SERVER_IP: ${{ secrets.SERVER_IP }} | |
- name: Deploy | |
run: | | |
ssh -i ~/.ssh/id_rsa $SSH_USER@$SERVER_IP "cd $DEPLOY_PATH && git pull origin main && docker compose -f $COMPOSE_FILE up -d --build --wait converter && docker compose -f $COMPOSE_FILE up -d --build --wait" | |
env: | |
SERVER_IP: ${{ secrets.SERVER_IP }} | |
DEPLOY_PATH: ${{ secrets.DEPLOY_PATH }} | |
COMPOSE_FILE: ${{ secrets.COMPOSE_FILE }} | |
SSH_USER: ${{ secrets.SSH_USER }} |