diff --git a/.github/workflows/update-docker-image.yml b/.github/workflows/update-docker-image.yml index 720c883..5d35d88 100644 --- a/.github/workflows/update-docker-image.yml +++ b/.github/workflows/update-docker-image.yml @@ -4,7 +4,7 @@ on: push: branches: ['main'] paths: - - 'src/PackageRegistryService' + - 'src/PackageRegistryService/**' - '!src/PackageRegistryService/Data/**' - '!src/PackageRegistryService/StagingArea/**' diff --git a/src/PackageRegistryService/API/Endpoints/VerificationEndpointsV1.cs b/src/PackageRegistryService/API/Endpoints/VerificationEndpointsV1.cs index 6c62c4c..d93895a 100644 --- a/src/PackageRegistryService/API/Endpoints/VerificationEndpointsV1.cs +++ b/src/PackageRegistryService/API/Endpoints/VerificationEndpointsV1.cs @@ -14,7 +14,7 @@ public static RouteGroupBuilder MapVerificationApiV1(this RouteGroupBuilder grou group.MapPost("/hashes", VerificationHandlers.CreateContentHash) .WithOpenApi() .WithName("CreatePackageContentHash") - .AddEndpointFilter(); // creating hashes via post requests requires an API key + .AddEndpointFilter(); // creating hashes via post requests requires an API key! return group.WithTags("Content Verification"); }