llama.cpp/.github/workflows/build-docker.yaml
dependabot[bot] 398fe81547
chore(deps): bump docker/build-push-action from 5 to 6 (#1539)
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 5 to 6.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](https://github.com/docker/build-push-action/compare/v5...v6)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-21 12:10:34 -04:00

50 lines
1.3 KiB
YAML

name: Build Docker
on: workflow_dispatch
permissions:
contents: write
packages: write
jobs:
docker:
name: Build and push Docker image
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: "recursive"
- 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.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v6
with:
context: .
file: "docker/simple/Dockerfile"
push: ${{ startsWith(github.ref, 'refs/tags/') }}
pull: true
platforms: linux/amd64,linux/arm64
tags: |
ghcr.io/abetlen/llama-cpp-python:latest
ghcr.io/abetlen/llama-cpp-python:${{ github.ref_name }}
build-args: |
BUILDKIT_INLINE_CACHE=1
- name: Publish to GitHub Tag
if: steps.docker_build.outputs.digest && startsWith(github.ref, 'refs/tags/')
run: |
echo "Docker image published for tag: ${{ github.ref_name }}"