Skip to content

Commit 8002e64

Browse files
committed
Fix github CI workflow.
Need to do apt update before installing.
1 parent 2b8db7f commit 8002e64

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,9 @@ jobs:
9696
key: $test-cache-${{ steps.toolchain.outputs.rustc_hash }}-${{ hashFiles('**/Cargo.lock') }}
9797

9898
- name: Install gnome-keyring
99-
run: sudo apt-get install -y gnome-keyring
99+
run: |
100+
sudo apt-get update
101+
sudo apt-get install -y gnome-keyring
100102
101103
- name: Start gnome-keyring
102104
# run gnome-keyring with 'foobar' as password for the login keyring

0 commit comments

Comments
 (0)