Skip to content

Commit 2d9f44d

Browse files
authored
fix(ci): remove buildx setup from main CI and add it to release workflow (#73)
- Removed QEMU and Docker Buildx setup from ci.yaml - Added them to release.yaml for multi-arch builds during release --- Did you sign your commit? [Instructions](https://github.com/kumahq/.github/blob/main/CONTRIBUTING.md#sign-your-commits): 👍 Have you read [Contributing guidelines](https://github.com/kumahq/.github/blob/main/CONTRIBUTING.md)?: 👍 Signed-off-by: Bart Smykla <bartek@smykla.com>
1 parent 72891f9 commit 2d9f44d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v4
14-
- name: Set up QEMU
15-
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0
16-
- name: Set up Docker Buildx
17-
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
1814
- uses: actions/setup-go@v5
1915
with:
2016
go-version-file: go.mod

.github/workflows/release.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ jobs:
2121
uses: actions/checkout@v4
2222
with:
2323
fetch-depth: 0
24+
- name: Set up QEMU
25+
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0
26+
- name: Set up Docker Buildx
27+
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
2428
- run: curl https://mise.run | sh
2529
- name: Set up Go
2630
uses: actions/setup-go@v5

0 commit comments

Comments
 (0)