Skip to content

Merge pull request #36 from milansamuel609/main #24

Merge pull request #36 from milansamuel609/main

Merge pull request #36 from milansamuel609/main #24

Workflow file for this run

name: Build and Push Docker Image to GCR
on:
push:
branches:
- "**" # This triggers on every push to any branch
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Log in to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.PAT_TOKEN }} # Use your Personal Access Token here
- name: Build the Docker image
run: |
docker build . -t ghcr.io/suraj-kumar00/flash-fathom-ai:latest
- name: Push the Docker image
run: |
docker push ghcr.io/suraj-kumar00/flash-fathom-ai:latest