Skip to content

Commit

Permalink
chore(ci): run apt-get update before installing
Browse files Browse the repository at this point in the history
  • Loading branch information
DevYukine committed Aug 4, 2023
1 parent 44b3486 commit 08badfb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
toolchain: stable
target: ${{ matrix.target }}
- name: Install Build-Tools
run: sudo apt-get install build-essential gcc-multilib
run: sudo apt-get update && sudo apt-get install install build-essential gcc-multilib
- name: Build target
uses: actions-rs/cargo@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
toolchain: stable
target: ${{ matrix.target }}
- name: Install Build-Tools
run: sudo apt-get install build-essential gcc-multilib
run: sudo apt-get update && sudo apt-get install build-essential gcc-multilib
- name: Build target
uses: actions-rs/cargo@v1
with:
Expand Down

0 comments on commit 08badfb

Please sign in to comment.