Skip to content

Commit 6e4cd4b

Browse files
author
Salvatore Ansani
committed
Test download for build ID
1 parent 55026f5 commit 6e4cd4b

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/virustotal.yaml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: VirusTotal Check
2+
3+
on:
4+
workflow_dispatch:
5+
release:
6+
types: [published]
7+
8+
jobs:
9+
download:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Download All Artifacts
13+
uses: actions/download-artifact@v4
14+
with:
15+
run-id: 98
16+
path: .
17+
merge-multiple: true
18+
19+
virustotal:
20+
runs-on: ubuntu-latest
21+
steps:
22+
- name: VirusTotal Scan
23+
uses: crazy-max/ghaction-virustotal@v4
24+
with:
25+
vt_api_key: ${{ secrets.VT_API_KEY }}
26+
files: |
27+
.exe$

0 commit comments

Comments
 (0)