Merge pull request #106 from Short-Tracker/feature/bot #272
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: short tracker backend workflow | |
on: [push] | |
env: | |
BACKEND_IMAGE: ${{ secrets.DOCKER_USERNAME }}/short_tracker_backend:v1 | |
BOT_IMAGE: ${{ secrets.DOCKER_USERNAME }}/short_tracker_bot:v1 | |
jobs: | |
build_and_push_to_docker_hub: | |
name: Push Docker image to Docker Hub | |
runs-on: ubuntu-latest | |
# if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master' | |
if: github.ref == 'refs/heads/dev' | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Login to Docker | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Push backend to Docker Hub | |
uses: docker/build-push-action@v4 | |
with: | |
push: true | |
file: ./short_tracker/Dockerfile | |
tags: ${{ env.BACKEND_IMAGE }} | |
- name: Push bot to Docker Hub | |
uses: docker/build-push-action@v4 | |
with: | |
push: true | |
file: ./short_tracker_bot/Dockerfile | |
tags: ${{ env.BOT_IMAGE }} | |
deploy: | |
runs-on: ubuntu-latest | |
needs: build_and_push_to_docker_hub | |
steps: | |
- name: executing remote ssh commands to deploy | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.HOST }} | |
username: ${{ secrets.USER }} | |
key: ${{ secrets.SSH_KEY }} | |
passphrase: ${{ secrets.PASSPHRASE }} | |
script: | | |
sudo docker-compose stop | |
sudo docker pull ${{ env.BACKEND_IMAGE }} | |
sudo docker pull ${{ env.BOT_IMAGE }} | |
sudo docker-compose up -d | |
sudo docker image prune -f | |