feat: data preparation scripts #27
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: Exotel IVRS Bot - Build | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build the Docker image | |
run: cd python && docker build . --file Dockerfile --tag hyd.ocir.io/ax2cel5zyviy/ekstep-djp/ivrs:python-latest | |
- name: Log in to Docker Hub | |
uses: docker/login-action@v1 | |
with: | |
registry: hyd.ocir.io | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Push the docker image | |
run: docker push hyd.ocir.io/ax2cel5zyviy/ekstep-djp/ivrs:python-latest |