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