Skip to content

Commit 02653a1

Browse files
rajnish-jauharirjauhari
andauthored
added support for s390x images (#9)
Co-authored-by: rjauhari <rjauhari@redhat.com>
1 parent 34997a3 commit 02653a1

2 files changed

Lines changed: 26 additions & 1 deletion

File tree

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Build and Push Multi-Arch Image
2+
on:
3+
push:
4+
branches:
5+
- main
6+
7+
jobs:
8+
build-and-push:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Check out code
12+
uses: actions/checkout@v3
13+
14+
- name: Log in to Quay using Podman
15+
uses: redhat-actions/podman-login@v1
16+
with:
17+
username: ${{ secrets.QUAY_USER }}
18+
password: ${{ secrets.QUAY_TOKEN }}
19+
registry: quay.io
20+
21+
- name: Build Multi-Arch Image
22+
run: make build
23+
24+
- name: Push Multi-Arch Image
25+
run: make push

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
IMAGE_NAME = quay.io/skupper/tcp-go-echo
3-
PLATFORM = linux/amd64,linux/arm64
3+
PLATFORM = linux/amd64,linux/arm64,linux/s390x
44

55
# The option below creates the images in the docker format.
66
# That is required for their use with Openshift 3.11

0 commit comments

Comments
 (0)