1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-12 13:28:33 +00:00

Trial and error paths on CIs yaaaay

This commit is contained in:
RobertBeekman 2024-02-23 22:39:49 +01:00
parent 108b881fd6
commit e5edc97077

View File

@ -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