Browse Source

update package list before building unpatched targets

Ashish Kulkarni 4 years ago
parent
commit
36c0e9aae0
1 changed files with 2 additions and 2 deletions
  1. 2 2
      .github/workflows/unpatched.yml

+ 2 - 2
.github/workflows/unpatched.yml

@@ -12,7 +12,7 @@ jobs:
     steps:
       - uses: actions/checkout@v2
       - name: install packages
-        run: sudo apt-get install -y libqtwebkit-dev
+        run: sudo apt-get update && sudo apt-get install -y libqtwebkit-dev
       - name: build
         run: qmake-qt4 CONFIG+=silent && make
 
@@ -22,6 +22,6 @@ jobs:
     steps:
       - uses: actions/checkout@v2
       - name: install packages
-        run: sudo apt-get install -y libqt5webkit5-dev libqt5xmlpatterns5-dev libqt5svg5-dev
+        run: sudo apt-get update && sudo apt-get install -y libqt5webkit5-dev libqt5xmlpatterns5-dev libqt5svg5-dev
       - name: build
         run: qmake CONFIG+=silent && make