From 5ca4cb05d2a57ba33bdfa3cf7539b0d28caa1bd2 Mon Sep 17 00:00:00 2001 From: Robert Baker Date: Sat, 17 Jun 2023 14:59:01 -0700 Subject: [PATCH] Switch GHA release workflow to dotnet publish --- .github/workflows/make-release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/make-release.yml b/.github/workflows/make-release.yml index fcee5e5b..d46a7561 100644 --- a/.github/workflows/make-release.yml +++ b/.github/workflows/make-release.yml @@ -57,15 +57,15 @@ jobs: - name: Dotnet Build (Default) working-directory: ./src/XIVLauncher.Core/ - run: dotnet build --configuration Release --no-restore -o ./dist/XIVLauncher.Core + run: dotnet publish -r linux-x64 --sc --configuration Release --no-restore -o ./dist/XIVLauncher.Core - name: Dotnet Build (Arch) working-directory: ./src/XIVLauncher.Core/ - run: dotnet build --configuration Release -p:DefineConstants=WINE_XIV_ARCH_LINUX --no-restore -o ./dist/XIVLauncher.Core-arch + run: dotnet publish -r linux-x64 --sc --configuration Release -p:DefineConstants=WINE_XIV_ARCH_LINUX --no-restore -o ./dist/XIVLauncher.Core-arch - name: Dotnet Build (Fedora) working-directory: ./src/XIVLauncher.Core/ - run: dotnet build --configuration Release -p:DefineConstants=WINE_XIV_FEDORA_LINUX --no-restore -o ./dist/XIVLauncher.Core-fedora + run: dotnet publish -r linux-x64 --sc --configuration Release -p:DefineConstants=WINE_XIV_FEDORA_LINUX --no-restore -o ./dist/XIVLauncher.Core-fedora - name: Generate nuget-dependencies.json working-directory: ./src/XIVLauncher.Core/