We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bdd9483 + 6ec69cf commit ed12e14Copy full SHA for ed12e14
.github/workflows/docker.yml
@@ -21,7 +21,9 @@ on:
21
jobs:
22
push_to_registry:
23
name: Push Docker image to Docker Hub
24
- runs-on: ubuntu-latest
+ runs-on:
25
+ - self-hosted
26
+ - docker
27
steps:
28
- name: Maximize build space
29
uses: easimon/maximize-build-space@master
@@ -39,6 +41,9 @@ jobs:
39
41
VERSION=$(grep -A 1 'name = "vllm"' uv.lock | grep version | cut -d '"' -f 2)
40
42
echo "version=$VERSION" >> $GITHUB_OUTPUT
43
44
+ - name: Set up Docker Buildx
45
+ uses: docker/setup-buildx-action@v3
46
+
47
- name: Log in to Docker Hub
48
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef
49
with:
0 commit comments