Skip to content

chore: removed the redundant comment in the image build workflow file #4

chore: removed the redundant comment in the image build workflow file

chore: removed the redundant comment in the image build workflow file #4

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ "azure-openai" ]
pull_request:
branches: [ "azure-openai" ]
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GHCR_TOKEN }}
- name: Build and push container image
uses: docker/build-push-action@v3
with:
push: true
tags: ghcr.io/${{ github.repository }}:latest
file: ./src/Dockerfile
context: ./src