Skip to content

Commit

Permalink
Fix build pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
containerscrew committed Mar 28, 2024
1 parent 7930d45 commit 9c5b1b6
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,19 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Buildah Action - amd64
uses: redhat-actions/buildah-build@v2
with:
image: docker.io/containerscrew/infratools:amd64-v1.0.0
containerfiles: |
./Containerfile
args: --arch amd64

- name: Buildah Action - arm64
# For multiarch
- name: Install qemu dependency
run: |
sudo apt-get update
sudo apt-get install -y qemu-user-static
- name: Buildah Action
uses: redhat-actions/buildah-build@v2
with:
image: docker.io/containerscrew/infratools:arm64-v1.0.0
image: docker.io/containerscrew/infratools
tags: v1.0.0 ${{ github.sha }}
containerfiles: |
./Containerfile
args: --arch arm64
build-args: |
arch=arm64

0 comments on commit 9c5b1b6

Please sign in to comment.