Skip to content

Commit 245e0c7

Browse files
committed
make zip releases smaller
1 parent 71e8b95 commit 245e0c7

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
for arch in "${architectures[@]}"; do
2929
dotnet publish src/pg2b3dm -c Release -r "$arch" /p:PublishSingleFile=true
3030
cd src/pg2b3dm/bin/Release/net8.0/"$arch"/publish
31-
zip -r ../../../../../../../pg2b3dm-"$arch".zip *
31+
zip -r ../../../../../../../pg2b3dm-"$arch".zip pg2b3dm*
3232
cd ../../../../../../..
3333
done
3434

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -549,6 +549,8 @@ Press F5 to start debugging.
549549

550550
## History
551551

552+
2024-08-08: release 2.14.1: make zip releases smaller
553+
552554
2024-08-08: release 2.14.0:
553555

554556
- add support for lines without z values

src/pg2b3dm/pg2b3dm.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
<PackageOutputPath>./nupkg</PackageOutputPath>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<ToolCommandName>pg2b3dm</ToolCommandName>
9-
<Version>2.14.0</Version>
9+
<Version>2.14.1</Version>
1010
<Description>Console tool for converting PostGIS geometries to 3D Tiles</Description>
11-
<AssemblyVersion>2.14.0</AssemblyVersion>
12-
<FileVersion>2.14.0</FileVersion>
11+
<AssemblyVersion>2.14.1</AssemblyVersion>
12+
<FileVersion>2.14.1</FileVersion>
1313
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
1414
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1515
<Company>Geodan</Company>

0 commit comments

Comments
 (0)