From efbe34648b4d34b2cd1552f7d58fa3266ded11b7 Mon Sep 17 00:00:00 2001 From: AURUMVORXX Date: Sun, 10 Nov 2024 21:07:23 +0300 Subject: [PATCH] fix: Missing libpython in Linux CI --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6ac84e0..7ea5eed 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -80,10 +80,11 @@ jobs: run: | mv out/build/Linux-x64-Release/lib ./ mv out/build/Linux-x64-Release/PyG2O.x64.so ./ + mv out/build/Linux-x64-Release/libpython3.12.so ./ - name: Archive files uses: montudor/action-zip@v1 with: - args: zip -r Linux-x64-Release.zip g2o lib PyG2O.x64.so + args: zip -r Linux-x64-Release.zip g2o lib PyG2O.x64.so libpython3.12.so - name: Upload release uses: actions/upload-release-asset@v1 env: