Merge pull request #36 from DevendraPPatil/all-1.1-dev-fastapi #20
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: DEV DEPLOYMENT | |
on: | |
push: | |
branches: [ all-1.1-dev-fastapi ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v2 | |
- | |
name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- | |
name: Load .env from GitHub Secret | |
run: echo "${{ secrets.MY_ENV_VARS }}" > .env | |
- | |
name: Build and push | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
push: true | |
tags: ${{ secrets.CONTAINER_REGISTRY }}:${{ secrets.IMAGE_TAG }} | |
env: | |
MY_ENV_VARS: ${{ secrets.MY_ENV_VARS }} | |
deploy: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
needs: [build] | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v2 | |
- | |
name: Deploy Stack | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.HOST }} | |
username: ${{ secrets.USERNAME }} | |
key: ${{ secrets.SSH_PRIVATE_KEY }} | |
port: ${{ secrets.PORT }} | |
script: | | |
docker login | |
docker container stop ${{ secrets.CONTAINER_NAME }} | |
docker rm ${{ secrets.CONTAINER_NAME }} | |
docker rmi ${{ secrets.CONTAINER_REGISTRY }}:${{ secrets.IMAGE_TAG }} | |
docker pull ${{ secrets.CONTAINER_REGISTRY }}:${{ secrets.IMAGE_TAG }} | |
cd /home/alldevuser/all-services/all-learner-text-eval | |
docker-compose up -d --force-recreate --no-deps |