From 246e487f539d3a88742e5f4fdd168cbe19276dc8 Mon Sep 17 00:00:00 2001 From: Phil Schneider Date: Mon, 7 Oct 2024 10:06:28 +0200 Subject: [PATCH] fix: add external services to workflows (#1058) * add externalService to the build of registration, marketplace and services service --------------------- Refs: #1056 Reviewed-By: Evelyn Gurschler --- .github/workflows/marketplace-app-service.yml | 1 + .github/workflows/registration-service.yml | 1 + .github/workflows/services-service.yml | 1 + 3 files changed, 3 insertions(+) diff --git a/.github/workflows/marketplace-app-service.yml b/.github/workflows/marketplace-app-service.yml index b06977a84e..485d3b706d 100644 --- a/.github/workflows/marketplace-app-service.yml +++ b/.github/workflows/marketplace-app-service.yml @@ -25,6 +25,7 @@ on: # service and transitive paths - 'src/marketplace/Apps.Service/**' - 'src/marketplace/Offers.Library/**' + - 'src/externalsystems/**' - 'src/framework/**' - 'src/keycloak/**' - 'src/mailing/**' diff --git a/.github/workflows/registration-service.yml b/.github/workflows/registration-service.yml index f63a94b567..cd1fbd3a74 100644 --- a/.github/workflows/registration-service.yml +++ b/.github/workflows/registration-service.yml @@ -24,6 +24,7 @@ on: paths: # service and transitive paths - 'src/framework/**' + - 'src/externalsystems/**' - 'src/registration/**' - 'src/keycloak/**' - 'src/mailing/**' diff --git a/.github/workflows/services-service.yml b/.github/workflows/services-service.yml index 66044decf9..548fdd2406 100644 --- a/.github/workflows/services-service.yml +++ b/.github/workflows/services-service.yml @@ -23,6 +23,7 @@ on: push: paths: # service and transitive paths + - 'src/externalsystems/**' - 'src/framework/**' - 'src/marketplace/Services.Service/**' - 'src/marketplace/Offers.Library/**'