💚 Fixed Jobs not running

This commit is contained in:
Nikhil Badyal
2022-08-29 23:42:59 +05:30
parent 57faa07c11
commit 6968bc8d40
3 changed files with 13 additions and 3 deletions
+3 -1
View File
@@ -9,11 +9,11 @@ on:
jobs:
virustotal:
if: ${{ inputs.VT_API_KEY }}
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- name: VirusTotal Scan
if: ${{ env.HAVE_VT_API_KEY == 'true' }}
uses: nikhilbadyal/ghaction-virustotal@master
with:
vt_api_key: ${{ secrets.VT_API_KEY }}
@@ -22,3 +22,5 @@ jobs:
request_rate: 4
files: |
.apk$
env:
HAVE_VT_API_KEY: ${{ secrets.VT_API_KEY != '' }}