Skip to content
This repository was archived by the owner on Aug 19, 2025. It is now read-only.

Commit 47eee03

Browse files
committed
Added Setup for QEMU and Docker Buildx in workflow
1 parent d39085e commit 47eee03

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/bot-client-image.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,21 @@ jobs:
2626
- name: Checkout
2727
uses: actions/checkout@v4
2828
with:
29-
submodules: 'true'
29+
submodules: "true"
3030

3131
- name: Login to GitHub Container Registry
3232
uses: docker/login-action@v3
3333
with:
3434
registry: ghcr.io
3535
username: ${{ github.actor }}
3636
password: ${{ secrets.GITHUB_TOKEN }}
37-
37+
38+
- name: Set up QEMU
39+
uses: docker/setup-qemu-action@v3
40+
41+
- name: Set up Docker Buildx
42+
uses: docker/setup-buildx-action@v3
43+
3844
- name: Set sha short
3945
id: vars
4046
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)