virus total workflow

This commit is contained in:
Yuriy Liskov
2025-12-01 04:07:16 +02:00
parent 87083688fb
commit bdf2490f7a

View File

@@ -53,12 +53,11 @@ jobs:
done
- name: Update Release with Quick Report
env:
RELEASE_TAG: ${{ github.event.release.tag_name }}
run: |
gh release view "$RELEASE_TAG" --json body -q .body > current_notes.txt
TAG=${GITHUB_REF#refs/tags/}
gh release view "$TAG" --json body -q .body > current_notes.txt
cat vt_report.txt >> current_notes.txt
gh release edit "$RELEASE_TAG" --notes-file current_notes.txt
gh release edit "$TAG" --notes-file current_notes.txt
- name: Done
run: echo "VirusTotal quick scan finished and report added to release."