Skip to content

Commit

Permalink
Fix apt-get command
Browse files Browse the repository at this point in the history
  • Loading branch information
LSchueler committed Aug 26, 2024
1 parent 5039a25 commit 9a63ae0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@ jobs:
python-version: "3.10"
architecture: x64
- name: Install Dependencies
run: sudo apt-get install libssl-dev
run: |
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install pkg-config libssl-dev
- name: Build Wheels
uses: messense/maturin-action@v1
with:
Expand Down

0 comments on commit 9a63ae0

Please sign in to comment.