diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 7682def..0eb151b 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -154,7 +154,6 @@ jobs: echo "=== Root directory contents ===" ls -la *.dll 2>/dev/null || echo "No DLLs in root directory" - cp libs/audio/*.dll release/ 2>/dev/null shell: bash # For Unix systems, also try static builds @@ -187,7 +186,6 @@ jobs: if: runner.os == 'macOS' run: | # Create the directory if it doesn't exist - cp libs/audio/*.dylib release/ 2>/dev/null sudo mkdir -p /usr/local/lib cd libs/audio sudo make install @@ -196,7 +194,6 @@ jobs: - name: Install static audio library (Linux) if: runner.os == 'Linux' run: | - cp libs/audio/*.so release/ 2>/dev/null cd libs/audio sudo make install shell: bash @@ -205,7 +202,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: PyTaiko-${{ runner.os }}-${{ runner.arch }} - path: release/ + path: release/libaudio.* - name: Install uv uses: astral-sh/setup-uv@v4