Skip to content

Commit 2e520ab

Browse files
committed
fix(ci): set up Docker Buildx to resolve build cache backend error
Adds docker/setup-buildx-action to fix 'buildx failed with' error related to missing Buildx setup. Ensures proper cache configuration during Docker image builds.
1 parent 8884c7b commit 2e520ab

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ jobs:
3636
username: ${{ github.actor }}
3737
password: ${{ secrets.GITHUB_TOKEN }}
3838

39+
- name: Set up Docker Buildx
40+
uses: docker/setup-buildx-action@v3
41+
with:
42+
install: true
43+
3944
- name: Set image tags
4045
id: meta
4146
run: |

0 commit comments

Comments
 (0)