We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2aec49 commit 90b5178Copy full SHA for 90b5178
.github/workflows/build.yml
@@ -109,9 +109,12 @@ jobs:
109
docker.io/${{ env.DOCKER_HUB_DEV_REPO }}:${{ env.VERSION }}-${{ github.sha }}
110
111
build-docker-ubi:
112
- name: Docker build UBI
+ name: Docker ${{ matrix.arch }} build UBI
113
needs: [build, set-product-version]
114
runs-on: ubuntu-latest
115
+ strategy:
116
+ matrix:
117
+ arch: ["amd64", "arm64"]
118
119
steps:
120
- name: Checkout repository
@@ -125,7 +128,7 @@ jobs:
125
128
version: ${{ env.VERSION }}
126
129
bin_name: ${{ vars.BIN_NAME }}
127
130
target: release-ubi
- arch: amd64
131
+ arch: ${{ matrix.arch }}
132
tags: |
133
docker.io/${{ env.DOCKER_HUB_REPO }}:${{ env.VERSION }}-ubi
134
dev_tags: |
0 commit comments