Files
qdrant/.github/workflows/dev-docker-image-build-gpu.yml
2026-03-26 09:53:54 +01:00

19 lines
578 B
YAML

name: Build and push a branch gpu image to ghcr
on:
workflow_dispatch:
jobs:
branch-gpu-build-and-push:
runs-on: [self-hosted, linux, x64]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
ref: ${{ github.ref_name }}
- uses: ./.github/actions/branch-build-and-push
with:
ghcr-password: ${{ secrets.GITHUB_TOKEN }}
push-to-ghcr: true
build-gpu: true
staging-build: ${{ github.ref_type == 'branch' && github.ref_name != 'master' }}