Skip to content

Commit

Permalink
feat: Add virus/malware scanning of standalone binaries during build
Browse files Browse the repository at this point in the history
  • Loading branch information
Göran Sander committed Oct 27, 2022
1 parent 11d2bd1 commit 2aaf091
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/virus-scan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: released

on:
release:
types: [published]

jobs:
virustotal:
runs-on: ubuntu-latest
steps:
-
name: VirusTotal Scan
uses: crazy-max/ghaction-virustotal@v3
with:
vt_api_key: ${{ secrets.VIRUSTOTAL_API_KEY }}
request_rate: 4
update_release_body: true
files: |
.zip$

0 comments on commit 2aaf091

Please sign in to comment.