Skip to content

Commit 7df5910

Browse files
committed
add virustotal separate workflow
1 parent 6031620 commit 7df5910

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/released.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: released
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
jobs:
8+
virustotal:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: VirusTotal Scan
12+
uses: crazy-max/ghaction-virustotal@v2
13+
with:
14+
vt_api_key: ${{ secrets.VIRUSTOTAL_API_KEY }}
15+
github_token: ${{ secrets.GITHUB_TOKEN }}
16+
update_release_body: true
17+
files: |
18+
.exe$

0 commit comments

Comments
 (0)