Skip to content

Commit 520df65

Browse files
committed
Apt update before requirements
1 parent 3cdcc4d commit 520df65

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/packager.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ jobs:
2929
${{ runner.os }}-pip-
3030
3131
- name: Install system requirements
32-
run: sudo apt install qt5-default qttools5-dev-tools
32+
run: |
33+
sudo apt update
34+
sudo apt install qt5-default qttools5-dev-tools
3335
3436
- name: Install project requirements
3537
run: |

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ jobs:
2929
${{ runner.os }}-pip-
3030
3131
- name: Install system requirements
32-
run: sudo apt install qt5-default qttools5-dev-tools
32+
run: |
33+
sudo apt update
34+
sudo apt install qt5-default qttools5-dev-tools
3335
3436
- name: Install Python requirements
3537
run: |

0 commit comments

Comments
 (0)