diff --git a/.github/workflows/released.yml b/.github/workflows/released.yml index 185f551..f39849d 100644 --- a/.github/workflows/released.yml +++ b/.github/workflows/released.yml @@ -8,14 +8,23 @@ jobs: virustotal: runs-on: ubuntu-latest steps: + - + name: VirusTotal Monitor Scan + uses: crazy-max/ghaction-virustotal@v2.1.2 + with: + vt_api_key: ${{ secrets.VT_MONITOR_API_KEY }} + vt_monitor: true + monitor_path: /${{ github.event.repository.name }}/${{ github.event.release.tag_name }} + update_release_body: false + github_token: ${{ secrets.GITHUB_TOKEN }} + files: | + ${{ github.event.repository.name }}-(win32|win64).exe - name: VirusTotal Scan - id: vt - uses: crazy-max/ghaction-virustotal@v2 + uses: crazy-max/ghaction-virustotal@v2.1.2 with: vt_api_key: ${{ secrets.VT_API_KEY }} + update_release_body: true github_token: ${{ secrets.GITHUB_TOKEN }} files: | - *-portable.exe - *-portable-win32.exe - *-portable-win64.exe + ${{ github.event.repository.name }}-(win32|win64).exe