Skip to content

Commit ccc424b

Browse files
v2.2.3
1 parent 0b8ab1d commit ccc424b

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

.github/workflows/release.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ jobs:
4949
manylinux: ""
5050
steps:
5151
- uses: actions/checkout@v4
52+
- name: Install uv
53+
uses: astral-sh/setup-uv@v6
5254
- uses: actions/setup-dotnet@v4
5355
with:
5456
dotnet-version: "9.x"
@@ -94,9 +96,16 @@ jobs:
9496
uses: jakobhellermann/maturin-action@allow-ld-env
9597
with:
9698
target: ${{ matrix.target }}
97-
args: --release --out dist
99+
args: --release --out dist_pre
98100
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
99101
manylinux: ${{ matrix.manylinux }}
102+
- name: Build cli wheels
103+
env:
104+
LD_LIBRARY_PATH: "${{ github.workspace }}/out"
105+
shell: bash
106+
run: |
107+
uvx auditwheel dist_pre/* -w dist
108+
100109
101110
- name: Upload wheels
102111
uses: actions/upload-artifact@v4

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ typetree-generator-api.workspace = true
2626
members = [".", "bindings", "cli", "typetree-generator-api"]
2727
default-members = [".", "bindings", "cli", "typetree-generator-api"]
2828

29-
package.version = "2.2.2"
29+
package.version = "2.2.3"
3030
package.edition = "2024"
3131
package.license = "MIT"
3232
package.repository = "https://github.com/jakobhellermann/unity-scene-repacker"

bindings/nuget/unityscenerepacker.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package>
33
<metadata>
44
<id>unityscenerepacker</id>
5-
<version>0.2.2</version>
5+
<version>0.2.3</version>
66
<license type="expression">MIT</license>
77
<authors>Jakob Hellermann</authors>
88
<projectUrl>https://github.com/jakobhellermann/unity-scene-repacker</projectUrl>
-4.82 KB
Binary file not shown.

0 commit comments

Comments
 (0)