Skip to content

Merge pull request #2 from bharathk005/workflow #3

Merge pull request #2 from bharathk005/workflow

Merge pull request #2 from bharathk005/workflow #3

Workflow file for this run

name: Cassata-CI
on:
push:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker build . --file Dockerfile --tag bharathk005/cassata:latest
- name: Push the Docker image
run: |
docker login --username ${{ secrets.DOCKERHUB_USERNAME }} --password ${{ secrets.DOCKERHUB_TOKEN }}
docker push bharathk005/cassata:latest