Skip to content

Fix/vector store job (#16) #6

Fix/vector store job (#16)

Fix/vector store job (#16) #6

Workflow file for this run

name: Create and publish all Docker images
on:
push:
branches: ["main","chore/github-registry"]
jobs:
build-docker-image:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to GHCR
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u "${{ github.actor }}" --password-stdin
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and publish Chabot Docker Image
uses: docker/build-push-action@v6
with:
context: .
file: Dockerfile.api
push: true
tags: |
ghcr.io/xpeho/chatbot-api:latest
ghcr.io/xpeho/chatbot-api:${{ github.sha }}