fix: install Docker CLI in job container and mount docker.sock

This commit is contained in:
2026-06-21 00:01:53 +08:00
parent 47f0ef9fb9
commit 91a18e76a5
+4
View File
@@ -11,6 +11,10 @@ on:
jobs:
deploy:
runs-on: aliyun
container:
options: -v /var/run/docker.sock:/var/run/docker.sock
steps:
- name: Install Docker CLI
run: apt-get update && apt-get install -y docker.io
- name: Deploy
run: cd /root/PR-Helper && bash deploy.sh