Skip to content

Commit 8ac4aaa

Browse files
authored
Merge branch 'main' into f/random-ports
2 parents 73b127c + 3e1a3ee commit 8ac4aaa

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/docker.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ on:
2121
jobs:
2222
push_to_registry:
2323
name: Push Docker image to Docker Hub
24-
runs-on: ubuntu-latest
24+
runs-on:
25+
- self-hosted
26+
- docker
2527
steps:
2628
- name: Checkout repository
2729
uses: actions/checkout@v5.0.0
@@ -32,6 +34,9 @@ jobs:
3234
VERSION=$(grep -A 1 'name = "vllm"' uv.lock | grep version | cut -d '"' -f 2)
3335
echo "version=$VERSION" >> $GITHUB_OUTPUT
3436
37+
- name: Set up Docker Buildx
38+
uses: docker/setup-buildx-action@v3
39+
3540
- name: Log in to Docker Hub
3641
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef
3742
with:

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ repos:
1717
- id: check-toml
1818

1919
- repo: https://github.com/astral-sh/ruff-pre-commit
20-
rev: 'v0.14.4'
20+
rev: 'v0.14.5'
2121
hooks:
2222
- id: ruff
2323
args: [--fix, --exit-non-zero-on-fix]

0 commit comments

Comments
 (0)