diff options
Diffstat (limited to '.github/workflows/linux_build.yml')
| -rw-r--r-- | .github/workflows/linux_build.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/linux_build.yml b/.github/workflows/linux_build.yml index d532d06..18e0776 100644 --- a/.github/workflows/linux_build.yml +++ b/.github/workflows/linux_build.yml @@ -21,9 +21,9 @@ jobs: run: | mkdir torch-release mv build-cmake/torch torch-release/ - cp /usr/local/lib/libbz2.so.1.0 torch-release/ + cp "$(ldconfig -p | grep libbz2.so.1.0 | tr ' ' '\n' | grep /| head -n1)" torch-release/ - name: Publish packaged artifacts uses: actions/upload-artifact@v4 with: name: linux-x64 - path: build-cmake/torch
\ No newline at end of file + path: torch-release
\ No newline at end of file |
