From f282db6825268178cf36eae811b4a9cf5e41a6f4 Mon Sep 17 00:00:00 2001 From: checkymander Date: Thu, 15 Feb 2024 23:47:57 -0500 Subject: [PATCH] update publish path --- .github/workflows/dotnet-desktop.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dotnet-desktop.yml b/.github/workflows/dotnet-desktop.yml index 69a1a704..935c06e6 100644 --- a/.github/workflows/dotnet-desktop.yml +++ b/.github/workflows/dotnet-desktop.yml @@ -82,15 +82,15 @@ jobs: # run: dotnet test - name: Build Agent Linux if: matrix.os == 'ubuntu-latest' - run: dotnet publish Athena/Payload_Type/athena/athena/agent_code/Agent/Agent.sln /p:LinuxTest=True + run: dotnet publish Payload_Type/athena/athena/agent_code/Agent.sln /p:LinuxTest=True - name: Build Agent MacOS if: matrix.os == 'macos-latest' - run: dotnet publish Athena/Payload_Type/athena/athena/agent_code/Agent/Agent.sln /p:MacTest=True + run: dotnet publish Payload_Type/athena/athena/agent_code/Agent.sln /p:MacTest=True - name: Build Agent Windows if: matrix.os == 'windows-latest' - run: dotnet publish Athena\Payload_Type\athena\athena\agent_code\Agent\Agent.sln /p:WindowsTest=True + run: dotnet publish Payload_Type\athena\athena\agent_code\Agent.sln /p:WindowsTest=True # Restore the application to populate the obj folder with RuntimeIdentifiers #- name: Restore the application