ci: don't run virustotal scan if key is missing

This commit is contained in:
tobtoht 2024-10-17 13:38:58 +02:00
parent 849269f53f
commit 4330a18464
No known key found for this signature in database
GPG key ID: E45B10DD027D2472

View file

@ -60,7 +60,7 @@ jobs:
- name: build
run: SUBSTITUTE_URLS='http://bordeaux.guix.gnu.org' HOSTS="${{ matrix.toolchain.target }}" ./contrib/guix/guix-build
- name: virustotal scan
if: matrix.toolchain.target == 'x86_64-w64-mingw32'
if: matrix.toolchain.target == 'x86_64-w64-mingw32' && secrets.VT_API_KEY != ''
uses: crazy-max/ghaction-virustotal@v4
with:
vt_api_key: ${{ secrets.VT_API_KEY }}