Skip to content

Commit f4d5a7c

Browse files
committed
ci: configure docker driver and remove gha caching from build workflow
- Set explicit docker driver for setup-buildx-action - Remove load option and gha cache configuration from base and final image builds - Simplifies workflow to local docker builds only
1 parent c933577 commit f4d5a7c

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,16 @@ jobs:
1717

1818
- name: Set up Docker Buildx
1919
uses: docker/setup-buildx-action@v3
20+
with:
21+
driver: docker
2022

2123
- name: Build base image
2224
uses: docker/build-push-action@v6
2325
with:
2426
context: .
2527
file: ./Dockerfile.base
2628
push: false
27-
load: true
2829
tags: openclaw-base:ci
29-
cache-from: type=gha,scope=ci-base
30-
cache-to: type=gha,mode=max,scope=ci-base
3130

3231
- name: Build final image
3332
uses: docker/build-push-action@v6
@@ -38,5 +37,3 @@ jobs:
3837
build-args: |
3938
BASE_IMAGE=openclaw-base:ci
4039
tags: openclaw:ci
41-
cache-from: type=gha,scope=ci-final
42-
cache-to: type=gha,mode=max,scope=ci-final

0 commit comments

Comments
 (0)