Skip to content

Commit 92501a2

Browse files
author
Nestor Acuna Blanco
committed
do-not-merge: test the arch of the images with Ubuntu latest
Signed-off-by: Nestor Acuna Blanco <[email protected]>
1 parent aa0a5cc commit 92501a2

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/pull-request.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,25 @@ jobs:
4141
go-version-file: 'go.mod'
4242
- name: Check commited files
4343
run: hack/check-commited-changes.sh
44+
45+
publish_operator_image-test-only:
46+
name: Publish images to a local repo (test only)
47+
runs-on: ubuntu-latest
48+
steps:
49+
- name: Checkout code
50+
uses: actions/checkout@v4
51+
52+
- name: Install Golang
53+
uses: actions/setup-go@v5
54+
with:
55+
go-version-file: 'go.mod'
56+
57+
- name: Publish operator images to a test repo in quay.io
58+
run: |
59+
podman login -u="${{ secrets.QUAY_BOT }}" -p="${{ secrets.QUAY_PASSWORD }}" quay.io
60+
export IMG_REPOSITORY="quay.io/nestor_acuna_blanco/ssp-operator"
61+
export VALIDATOR_REPOSITORY="quay.io/nestor_acuna_blanco/kubevirt-template-validator"
62+
make container-build
63+
make container-push
64+
make build-template-validator-container
65+
make push-template-validator-container

0 commit comments

Comments
 (0)