From e5edc97077077773ecf92e5c256020ea982e2331 Mon Sep 17 00:00:00 2001 From: RobertBeekman Date: Fri, 23 Feb 2024 22:39:49 +0100 Subject: [PATCH] Trial and error paths on CIs yaaaay --- .github/workflows/master.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 5633f29e6..63b15cc9c 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -68,7 +68,7 @@ jobs: New-Item -ItemType "Directory" -Path build/${{ matrix.rid }}/Plugins/ Get-ChildItem -File -Recurse -Filter *.csproj Artemis.Plugins/src/ | Foreach-Object -Parallel { - dotnet publish --configuration Release --runtime ${{ matrix.rid }} --output build-plugins/$($_.BaseName) --no-self-contained $($_.FullName); + dotnet publish --configuration Release -p:SolutionDir=${{ github.workspace }}/Artemis/Artemis.Plugins/src --runtime ${{ matrix.rid }} --output build-plugins/$($_.BaseName) --no-self-contained $($_.FullName); Compress-Archive -Path "build-plugins/$($_.BaseName)" -DestinationPath "build/${{ matrix.rid }}/Plugins/$($_.BaseName).zip"; } shell: pwsh