Skip to content

Commit 90b5178

Browse files
authored
Add support for the Red Hat UBI ARM64 image (#707)
1 parent e2aec49 commit 90b5178

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,12 @@ jobs:
109109
docker.io/${{ env.DOCKER_HUB_DEV_REPO }}:${{ env.VERSION }}-${{ github.sha }}
110110
111111
build-docker-ubi:
112-
name: Docker build UBI
112+
name: Docker ${{ matrix.arch }} build UBI
113113
needs: [build, set-product-version]
114114
runs-on: ubuntu-latest
115+
strategy:
116+
matrix:
117+
arch: ["amd64", "arm64"]
115118

116119
steps:
117120
- name: Checkout repository
@@ -125,7 +128,7 @@ jobs:
125128
version: ${{ env.VERSION }}
126129
bin_name: ${{ vars.BIN_NAME }}
127130
target: release-ubi
128-
arch: amd64
131+
arch: ${{ matrix.arch }}
129132
tags: |
130133
docker.io/${{ env.DOCKER_HUB_REPO }}:${{ env.VERSION }}-ubi
131134
dev_tags: |

0 commit comments

Comments
 (0)