From 07ab2acdafb4da5d6951c1520a90765083a54219 Mon Sep 17 00:00:00 2001 From: Ali Ok Date: Tue, 26 Sep 2023 23:47:33 +0300 Subject: [PATCH] GH action to build minio-webhook-source image --- .github/workflows/build-images.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/build-images.yaml b/.github/workflows/build-images.yaml index f17de298..87797cf0 100644 --- a/.github/workflows/build-images.yaml +++ b/.github/workflows/build-images.yaml @@ -28,3 +28,18 @@ jobs: password: ${{ secrets.REGISTRY_PASSWORD }} - name: Print ai-demo-upload-service image url run: echo "ai-demo-upload-service image pushed to ${{ steps.push-ai-demo-upload-service.outputs.registry-paths }}" + + - name: Build ai-demo-minio-webhook-source + id: build-ai-demo-minio-webhook-source + run: docker build services/minio-webhook-source --file services/minio-webhook-source/Dockerfile -t ai-demo-minio-webhook-source:main + - name: Push ai-demo-minio-webhook-source + id: push-ai-demo-minio-webhook-source + uses: redhat-actions/push-to-registry@v2 + with: + image: ai-demo-minio-webhook-source + tags: main + registry: quay.io/kevent-mesh + username: ${{ secrets.REGISTRY_USERNAME }} + password: ${{ secrets.REGISTRY_PASSWORD }} + - name: Print ai-demo-minio-webhook-source image url + run: echo "ai-demo-minio-webhook-source image pushed to ${{ steps.push-ai-demo-minio-webhook-source.outputs.registry-paths }}"