Files
qdrant/.github/workflows/dev-docker-image-build-gpu.yml
tellet-q 3d42527be1 Build dev with new feature flag (#7612)
* Build dev images with new feature flag

* Disable feature for master and tags
2025-11-26 14:11:04 +01:00

19 lines
531 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@v6
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' }}