Skip to content

Commit

Permalink
Fix apt source
Browse files Browse the repository at this point in the history
  • Loading branch information
Nickid2018 committed Jul 14, 2024
1 parent d685881 commit c9aa51a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,9 @@ jobs:
with:
submodules: true
- name: Install Deps
run: sudo apt-get update & sudo apt-get install cmake libwireshark-dev make clang
run: |
sudo add-apt-repository ppa:wireshark-dev/stable
sudo apt-get update & sudo apt-get install cmake libwireshark-dev make clang
- name: Configure dissector (Debug)
if: "!startsWith(github.ref, 'refs/tags/') || contains(github.ref, 'beta')"
run: cmake -S . -B build
Expand Down

0 comments on commit c9aa51a

Please sign in to comment.