Skip to content

feat: add ability to stop completions (#40) #9

feat: add ability to stop completions (#40)

feat: add ability to stop completions (#40) #9

Workflow file for this run

name: Publish Docker image to container registry
on:
push:
branches:
- main
jobs:
docker:
name: Build & publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
- name: Push the Docker image
uses: docker/build-push-action@v5
with:
push: true
tags: ghcr.io/${{ github.actor }}/hollama:latest
platforms: linux/arm64, linux/amd64