1name: released
2
3on:
4  release:
5    types: [published]
6
7jobs:
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.VT_API_KEY }}
15          github_token: ${{ github.token }}
16          update_release_body: true
17          files: |
18            .exe$
19