Skip to content

Commit

Permalink
Make GHA do apt update before installing musl
Browse files Browse the repository at this point in the history
  • Loading branch information
tradeJmark committed Oct 22, 2024
1 parent e6e3a96 commit 868ea43
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ jobs:
working-directory: ./wghub-ui
run: npm run build
- name: Set up musl
run: apt install musl-dev musl-tools
run: |
sudo apt update
sudo apt install musl-dev musl-tools
- name: Build backend
run: cargo build --release --target x86_64-unknown-linux-musl
- name: Push to GitHub Packages
Expand Down

0 comments on commit 868ea43

Please sign in to comment.