Skip to content

Commit

Permalink
fix(workflow): adjust QEMU setup order for multi-platform builds in b…
Browse files Browse the repository at this point in the history
…uild-ee.yml

- Added a step to install `qemu` and `binfmt-support` before setting up QEMU.
  • Loading branch information
marcosmamorim committed Jan 6, 2025
1 parent 72fd504 commit d42daf9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-ee.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@ jobs:

- uses: actions/setup-python@v4

- name: Setup QEMU for multi-platform builds
uses: docker/setup-qemu-action@v2
with:
platforms: all

- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y qemu binfmt-support
- name: Setup QEMU for multi-platform builds
uses: docker/setup-qemu-action@v2
with:
platforms: all

- name: Buildah Action
uses: redhat-actions/buildah-build@v2
id: build-image
Expand Down

0 comments on commit d42daf9

Please sign in to comment.