We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87a6019 commit a4b18d4Copy full SHA for a4b18d4
1 file changed
.github/workflows/release_linux.yml
@@ -18,6 +18,12 @@ jobs:
18
# Set up Rust toolchain
19
- name: Set up Rust toolchain
20
uses: dtolnay/rust-toolchain@stable # Set up the Rust toolchain
21
+ # Install Linux dependencies (for alsa-sys and other potential native dependencies)
22
+ - name: Install Linux dependencies
23
+ run: |
24
+ sudo apt-get update
25
+ sudo apt-get install -y libasound2-dev # Install ALSA development libraries
26
+ sudo apt-get install -y pkg-config # Ensure pkg-config is installed
27
28
# Install dependencies (this step is just to ensure the release build works)
29
- name: Install dependencies
0 commit comments