Skip to content

Commit 9c8539f

Browse files
authored
Merge pull request #27 from Pehat/patch-2
Make Linux build update the repository before fetching the dependencies.
2 parents 9aa8ec2 + 8f057cf commit 9c8539f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/linux.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Install packages
14-
run: sudo apt-get install -y portaudio19-dev libsndfile1-dev
14+
run: |
15+
sudo apt-get update
16+
sudo apt-get install -y portaudio19-dev libsndfile1-dev
1517
- uses: actions/checkout@v4
1618
with:
1719
submodules: true

0 commit comments

Comments
 (0)