File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 11
22IMAGE_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
You can’t perform that action at this time.
0 commit comments