fix(ci): use docker-ready runner label in Forgejo workflow
- Change runs-on from self-hosted to docker-ready - Add DOCKER_HOST and DOCKER_BUILDKIT env vars - Align with other repo workflows
This commit is contained in:
parent
67d372c160
commit
afb4dc9ae6
1 changed files with 4 additions and 1 deletions
|
|
@ -12,7 +12,10 @@ concurrency:
|
|||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: self-hosted
|
||||
runs-on: docker-ready
|
||||
env:
|
||||
DOCKER_HOST: tcp://127.0.0.1:2375
|
||||
DOCKER_BUILDKIT: "1"
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue