Skip to content

Commit

Permalink
apt update before apt install.
Browse files Browse the repository at this point in the history
  • Loading branch information
hjtappe committed Dec 11, 2024
1 parent 3a02304 commit 31f4bcd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/flutter-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,9 @@ jobs:
flutter-version-file: pubspec.yaml

- name: Install dependencies
run: sudo apt-get install -y clang cmake ninja-build pkg-config libgtk-3-dev liblzma-dev
run: |
sudo apt-get update
sudo apt-get install -y clang cmake ninja-build pkg-config libgtk-3-dev liblzma-dev
- name: Install project dependencies
run: flutter pub get
Expand Down

0 comments on commit 31f4bcd

Please sign in to comment.