Skip to content

Commit

Permalink
feat: Test enhanced virus scan as part of build process
Browse files Browse the repository at this point in the history
  • Loading branch information
Göran Sander committed Oct 16, 2022
1 parent a3d15e4 commit ed92bb4
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,36 @@ jobs:
ls -la release/macos
ls -la release/win
ls -la release/linux
mkdir ghaction-virustotal
- name: VirusTotal Scan
if: ${{ steps.release.outputs.releases_created }}
uses: crazy-max/ghaction-virustotal@v3
with:
vt_api_key: ${{ secrets.VIRUSTOTAL_API_KEY }}
request_rate: 4
files: |
./release/macos/*
./release/win/*
./release/linux/*
# Upload to VirusTotal monitor
- name: VirusTotal Monitor Scan
uses: crazy-max/ghaction-virustotal@v3
if: ${{ steps.release.outputs.releases_created }}
with:
vt_api_key: ${{ secrets.VIRUSTOTAL_API_KEY }}
vt_monitor: true
monitor_path: /ghaction-virustotal
files: |
./release/macos/*
./release/win/*
./release/linux/*
- name: Debug
if: ${{ steps.release.outputs.releases_created }}
run: |
ls -la ghaction-virustotal
- name: Upload macOS build artifacts
if: ${{ steps.release.outputs.releases_created }}
Expand Down

0 comments on commit ed92bb4

Please sign in to comment.