diff --git a/.github/workflows/dotnet-desktop.yml b/.github/workflows/dotnet-desktop.yml index d65c473..d2c767f 100644 --- a/.github/workflows/dotnet-desktop.yml +++ b/.github/workflows/dotnet-desktop.yml @@ -39,16 +39,16 @@ jobs: - name: Archive the build artifacts for Linux if: matrix.os == 'ubuntu-latest' - run: tar -czvf whichcam-linux.tar.gz -C ./bin/Release/net8.0/linux-x64/publish . + run: tar -czvf whichcam-linux.tar.gz -C ./bin/Release/net8.0/linux-x64/publish/whichcam module.json . - name: Archive the build artifacts for Windows if: matrix.os == 'windows-latest' - run: Compress-Archive -Path ./bin/Release/net8.0/win-x64/publish\* -DestinationPath whichcam-windows.zip + run: Compress-Archive -Path ./bin/Release/net8.0/win-x64/publish/whichcam module.json -DestinationPath whichcam-windows.zip shell: pwsh - name: Archive the build artifacts for macOS if: matrix.os == 'macos-latest' - run: tar -czvf whichcam-macos.tar.gz -C ./bin/Release/net8.0/osx-arm64/publish . + run: tar -czvf whichcam-macos.tar.gz -C ./bin/Release/net8.0/osx-arm64/publish module.json . - name: Upload build artifacts uses: actions/upload-artifact@v3