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:
Ashwin Kumar Sivakumar 2026-07-06 04:24:06 +05:30
parent 67d372c160
commit afb4dc9ae6

View file

@ -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