JM-1.5.0 #15
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow is triggered upon the publication of a release. | |
# It performs a virus scan on the released files using the VirusTotal API. | |
# Designed to enhance the security of the release process by performing | |
# virus scans on the released ".jar" files using the VirusTotal service. | |
name: VirusTotal Scan | |
on: | |
release: | |
types: [published] | |
jobs: | |
virustotal: | |
runs-on: ubuntu-latest | |
steps: | |
- name: VirusTotal Scan | |
uses: crazy-max/ghaction-virustotal@v4 | |
with: | |
vt_api_key: ${{ secrets.VT_API_KEY }} | |
# update_release_body: true | |
files: | | |
.jar$ |