diff --git a/.github/workflows/build-libs.yml b/.github/workflows/build-libs.yml index 7909f43..fddb60c 100644 --- a/.github/workflows/build-libs.yml +++ b/.github/workflows/build-libs.yml @@ -107,15 +107,21 @@ jobs: - name: cmake build run: | cmake --build build + - name: move .so file + run: | + mv build/libportaudio.so . + - name: show some information about the .so file + run: | + ldd libportaudio.so - name: upload build uses: actions/upload-artifact@v3 with: - name: manylinux-build - path: build/* + name: linux-so + path: libportaudio.so push: runs-on: ubuntu-latest - needs: [macos, windows] + needs: [macos, windows, linux] steps: - name: Clone Git repository uses: actions/checkout@v4 @@ -139,6 +145,10 @@ jobs: uses: actions/download-artifact@v4 with: name: windows-Win32-dll-asio + - name: Retrieve .so file + uses: actions/download-artifact@v3 + with: + name: linux-so - name: Commit and push binaries (if there are changes) run: | git config --global user.name 'github-actions[bot]' diff --git a/libportaudio.so b/libportaudio.so new file mode 100644 index 0000000..d978f73 --- /dev/null +++ b/libportaudio.so @@ -0,0 +1 @@ +This is just a dummy file that will be overwritten with the real thing