From e13cf9d830c1a86f36362ba01d108a7b3ea54be4 Mon Sep 17 00:00:00 2001 From: Daan Boerlage Date: Tue, 9 Nov 2021 18:46:10 +0100 Subject: [PATCH] Remove the single file build flag because it seems to break localization --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 55d9536..5c86c73 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -18,7 +18,7 @@ Build: script: - dotnet restore - dotnet test tests - - dotnet publish --version-suffix "$VERSION" -r linux-x64 -c Release -p:PublishSingleFile=true -p:DebugType=embedded --no-self-contained -o ./app ./src/Startup/ + - dotnet publish --version-suffix "$VERSION" -r linux-x64 -c Release -p:DebugType=embedded --no-self-contained -o ./app ./src/Startup/ Package: stage: docker