Browse Source

Fix: wget command not found (#874)

Loyalsoldier 4 years ago
parent
commit
324c7cb862
1 changed files with 5 additions and 1 deletions
  1. 5 1
      .github/workflows/deb.yml

+ 5 - 1
.github/workflows/deb.yml

@@ -5,6 +5,10 @@ on:
     branches:
       - master
       - v*
+  pull_request:
+    types: [opened, synchronize, reopened]
+    paths:
+      - ".github/workflows/deb.yml"
   release:
     types: [prereleased]
 
@@ -18,7 +22,7 @@ jobs:
       - name: Install git
         run: |
           apt-get update
-          apt-get install -y git
+          apt-get install -y git wget
 
       - name: Checkout codebase
         uses: actions/checkout@v2