diff --git a/.github/workflows/build-services-no-credentials.yml b/.github/workflows/build-services-no-credentials.yml index c965ab8c16..185aff5fcf 100644 --- a/.github/workflows/build-services-no-credentials.yml +++ b/.github/workflows/build-services-no-credentials.yml @@ -1,4 +1,4 @@ -name: Load Services via Docker +name: Load Services via Docker (no credentials) on: workflow_call: @@ -49,3 +49,6 @@ jobs: image: mongo-express memcached: image: bitnami/memcached:latest + steps: + - name: Docker Services loaded + run: echo "Docker Services loaded" \ No newline at end of file diff --git a/.github/workflows/build-services.yml b/.github/workflows/build-services.yml index 0a5a90387c..2766de39f4 100644 --- a/.github/workflows/build-services.yml +++ b/.github/workflows/build-services.yml @@ -2,7 +2,6 @@ name: Load Docker Images on: workflow_call: - workflow_dispatch: jobs: start-services: @@ -65,3 +64,6 @@ jobs: credentials: username: ${{ secrets.DOCKERHUB_PUBLIC_USERNAME }} password: ${{ secrets.DOCKERHUB_PUBLIC_TOKEN }} + steps: + - name: Docker Services loaded + run: echo "Docker Services loaded" \ No newline at end of file diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0abf5a2c9f..9779f03d3a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -44,7 +44,7 @@ jobs: if: ${{ env.DOCKERHUB_PUBLIC_USERNAME != '' }} uses: ./.github/workflows/build-services.yml - name: Start Docker Services (without credentials) - if: ${{ env.DOCKERHUB_PUBLIC_USERNAME != '' }} + if: ${{ env.DOCKERHUB_PUBLIC_USERNAME == '' }} uses: ./.github/workflows/build-services-no-credentials.yml - name: Configure Build Java Version