mirror of
https://github.com/qdrant/qdrant.git
synced 2026-07-30 14:41:00 -05:00
19 lines
578 B
YAML
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' }}
|