Skip to content

Commit

Permalink
add sudo apt update to ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Ved-s committed May 11, 2024
1 parent 4182bf0 commit 4c1e63d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust-build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: rustup default stable && rustup target add x86_64-unknown-linux-gnu

- name: Install libraries
run: sudo apt install libatk1.0-dev libgtk-3-dev -y
run: sudo apt update && sudo apt install libatk1.0-dev libgtk-3-dev -y

- name: Build
run: cargo build --target x86_64-unknown-linux-gnu --release
Expand All @@ -42,7 +42,7 @@ jobs:
run: rustup default stable && rustup target add x86_64-pc-windows-gnu

- name: Install gcc
run: sudo apt install gcc-mingw-w64-x86-64 -y
run: sudo apt update && sudo apt install gcc-mingw-w64-x86-64 -y

- name: Build
run: cargo build --target x86_64-pc-windows-gnu --release
Expand Down

0 comments on commit 4c1e63d

Please sign in to comment.