Skip to content

Commit

Permalink
Trial and error paths on CIs yaaaay
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertBeekman committed Feb 23, 2024
1 parent 108b881 commit e5edc97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e5edc97

Please sign in to comment.