Skip to content

Commit

Permalink
Run apt update before install
Browse files Browse the repository at this point in the history
  • Loading branch information
GilesBathgate committed Jul 20, 2024
1 parent db6e2b9 commit ed26210
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release-ppa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Install Dependencies
run: sudo apt-get install -y debhelper devscripts qt6-base-dev qmake6 libqt6opengl6-dev libglu1-mesa-dev libboost-dev libcgal-dev asciidoc source-highlight
run: |
sudo apt-get update
sudo apt-get install -y debhelper devscripts qt6-base-dev qmake6 libqt6opengl6-dev libglu1-mesa-dev libboost-dev libcgal-dev asciidoc source-highlight
- name: Import GPG
uses: crazy-max/ghaction-import-gpg@v5
with:
Expand Down

0 comments on commit ed26210

Please sign in to comment.