From 10d936d1dbb25210363a71d8df7e91dcacf82437 Mon Sep 17 00:00:00 2001 From: Lukas Panneke Date: Fri, 8 Mar 2024 17:41:56 +0100 Subject: [PATCH] Set IncludeAllContentForSelfExtract false for linux-sc Prevents creation of the ~/.net/ArcdpsLogManager directory --- .github/workflows/release-manager.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-manager.yml b/.github/workflows/release-manager.yml index ae4f3121..1e8b3da6 100644 --- a/.github/workflows/release-manager.yml +++ b/.github/workflows/release-manager.yml @@ -32,7 +32,7 @@ jobs: - name: Package Log Manager (Linux, GTK) run: dotnet publish ArcdpsLogManager.Gtk --configuration Release -r linux-x64 --self-contained=false -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true -p:IncludeAllContentForSelfExtract=true -o artifacts/manager/linux64/ - name: Package Log Manager (Linux, GTK, self-contained) - run: dotnet publish ArcdpsLogManager.Gtk --configuration Release -r linux-x64 --self-contained=true -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true -p:IncludeAllContentForSelfExtract=true -o artifacts/manager/linux64-sc/ + run: dotnet publish ArcdpsLogManager.Gtk --configuration Release -r linux-x64 --self-contained=true -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=false -p:IncludeAllContentForSelfExtract=true -o artifacts/manager/linux64-sc/ - name: Prettify executable filenames run: | mv artifacts/manager/win64/GW2Scratch.ArcdpsLogManager.Wpf.exe artifacts/manager/win64/ArcdpsLogManager.exe