G-Research / ParquetSharp

ParquetSharp is a .NET library for reading and writing Apache Parquet files.
Apache License 2.0
183 stars 49 forks source link

Fix specifying version-suffix parameter in CI build #463

Closed adamreeve closed 4 months ago

adamreeve commented 4 months ago

For some reason:

dotnet build csharp --version-suffix="something"

is ok, but

dotnet build csharp --version-suffix=""

fails with "Required argument missing for option: '--version-suffix'." (see https://github.com/G-Research/ParquetSharp/actions/runs/9636767326/job/26575196786)

We need to instead use:

dotnet build csharp --version-suffix ""