rgolangh commented on code in PR #294:
URL:
https://github.com/apache/incubator-kie-kogito-serverless-operator/pull/294#discussion_r1384845940
##########
.github/workflows/container-images.yml:
##########
@@ -0,0 +1,35 @@
+name: Container Images
+
+on:
+ push:
+ branches: [ "main" ]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v3
+
+ - name: Buildah Action
+ id: build-image
+ uses: redhat-actions/buildah-build@v2
+ with:
+ image: kogito-serverless-operator
+ tags: v1 ${{ github.sha }}
+ containerfiles: |
+ ./Dockerfile
+
+ - name: Push To quay.io
+ id: push-to-quay
+ uses: redhat-actions/push-to-registry@v2
+ with:
+ image: ${{ steps.build-image.outputs.image }}
+ tags: ${{ steps.build-image.outputs.tags }}
+ registry: quay.io/kiegroup
+ username: ${{ secrets.REGISTRY_USERNAME }}
+ password: ${{ secrets.REGISTRY_PASSWORD }}
Review Comment:
@ricardozanini need to make sure to add those 2 secrets to the repo secrets
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]