Files
qdrant/.github/workflows/dev-docker-image-build-gpu.yml
dependabot[bot] a050b1c34d build(deps): bump actions/checkout from 7.0.0 to 7.0.1 (#9911)
Bumps [actions/checkout](https://github.com/actions/checkout) from 7.0.0 to 7.0.1.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](9c091bb21b...3d3c42e5aa)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: 7.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-07-20 19:04:20 -04:00

25 lines
669 B
YAML

name: Build and push a branch gpu image to ghcr
on:
workflow_dispatch:
permissions:
contents: read
jobs:
branch-gpu-build-and-push:
runs-on: [self-hosted, linux, x64]
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
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' }}