Merge pull request #25 from yuriihavrylko/feature/l9t2-fastapi #87
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 Image to Docker Hub | |
env: | |
APP_NAME: 'prjctr' | |
STREAMLIT_NAME: 'app-streamlit' | |
FASTAPI_NAME: 'app-fastapi' | |
on: | |
push: | |
branches: | |
- master | |
- feature/* | |
workflow_dispatch: | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout GitHub Action' | |
uses: actions/checkout@main | |
- name: 'Set up Python' | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.8' | |
- name: 'Install dependencies' | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r app/requirements-dev.txt | |
- name: 'Run pytest' | |
run: | | |
cd app/ | |
pytest tests/ | |
env: | |
PYTHONPATH: '.' | |
push-image: | |
needs: tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout GitHub Action' | |
uses: actions/checkout@main | |
- name: 'Login to Docker Hub' | |
uses: docker/login-action@v1 | |
with: | |
registry: docker.io | |
username: ${{ secrets.DH_USERNAME }} | |
password: ${{ secrets.DH_PASSWORD }} | |
- name: 'Build & Push Image' | |
run: | | |
docker build . --tag docker.io/${{ secrets.DH_USERNAME }}/$APP_NAME:latest | |
docker push docker.io/${{ secrets.DH_USERNAME }}/$APP_NAME:latest | |
- name: 'Build & Push Image streamlit' | |
run: | | |
docker build . --tag docker.io/${{ secrets.DH_USERNAME }}/$STREAMLIT_NAME:latest | |
docker push docker.io/${{ secrets.DH_USERNAME }}/$STREAMLIT_NAME:latest | |
- name: 'Build & Push Image fastapi' | |
run: | | |
docker build . --tag docker.io/${{ secrets.DH_USERNAME }}/$FASTAPI_NAME:latest | |
docker push docker.io/${{ secrets.DH_USERNAME }}/$FASTAPI_NAME:latest | |