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

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: 7.0.0
  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>
2026-06-23 09:53:04 +02: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@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
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' }}