Skip to content

fix(docs): The README file is updated. #9

fix(docs): The README file is updated.

fix(docs): The README file is updated. #9

Workflow file for this run

name: CI Pipeline
on:
push:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Login to DockerHub
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
run: echo $DOCKER_PASSWORD | docker login -u $DOCKER_USERNAME --password-stdin
- name: Build the Docker image
run: docker build -t surajkumar00/flashfathom-ai .
- name: Push the Docker image to DockerHub
run: docker push surajkumar00/flashfathom-ai