Removed ESLints bugs #129
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: Build and Deploy to Docker Hub | |
on: | |
pull_request: | |
branches: | |
- prod | |
jobs: | |
build-and-push: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Out Repo | |
uses: actions/checkout@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Install Docker Compose | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y docker-compose | |
- name: Log in to Docker Hub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Build and Push Docker image | |
run: | | |
docker-compose build | |
docker-compose push | |
- name: Deploy to EC2 | |
uses: appleboy/ssh-action@master | |
env: | |
DB_URL: ${{ secrets.DB_URL }} | |
with: | |
host: ${{ secrets.SSH_HOST }} | |
username: ${{ secrets.SSH_USERNAME }} | |
key: ${{ secrets.SSH_KEY }} | |
script: | | |
cd /home/ubuntu/saas-apps && sudo docker-compose pull | |
cd /home/ubuntu/saas-apps && sudo docker-compose rm -f | |
cd /home/ubuntu/saas-apps && sudo docker-compose up -d |