Skip to content

Commit

Permalink
ci: add virustotal
Browse files Browse the repository at this point in the history
  • Loading branch information
WoozyMasta committed Dec 7, 2024
1 parent 34f74aa commit ea5f969
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/scan.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Scan release

on:
release:
types: [published]

permissions:
contents: write

jobs:
virustotal:
runs-on: ubuntu-latest
steps:
- name: VirusTotal Scan
uses: crazy-max/ghaction-virustotal@v4
with:
vt_api_key: ${{ secrets.VT_API_KEY }}
update_release_body: true
files: |
./dayz-exporter-darwin-arm64
./dayz-exporter-linux-amd64
./dayz-exporter-linux-arm64
./dayz-exporter-windows-amd64.exe

0 comments on commit ea5f969

Please sign in to comment.