From 2b6afba70e7b39c3202ffb2b5e373819fd1cf402 Mon Sep 17 00:00:00 2001 From: Simon Hirtreiter Date: Wed, 8 May 2024 10:46:24 +0200 Subject: [PATCH] github actions add docker camunda registry login --- .github/workflows/workflow-build-services.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/workflow-build-services.yaml b/.github/workflows/workflow-build-services.yaml index 9c8df7c8a..9f72be011 100644 --- a/.github/workflows/workflow-build-services.yaml +++ b/.github/workflows/workflow-build-services.yaml @@ -250,6 +250,13 @@ jobs: with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_KEY }} + - name: Login to registry.camunda.cloud + if: inputs.build-images == true + uses: docker/login-action@v3 + with: + registry: registry.camunda.cloud + username: ${{ secrets.CAMUNDA_USER }} + password: ${{ secrets.CAMUNDA_USER_PASSWORD }} - name: Build and push engine if: inputs.build-images == true