mirror of
https://github.com/Anon-Planet/thgtoa.git
synced 2026-05-06 11:34:18 +02:00
a14191bc7b
Signed-off-by: nopeitsnothing <no@anonymousplanet.org>
29 lines
629 B
YAML
29 lines
629 B
YAML
name: '🦠 VirusTotal Scan'
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: '📦 Checkout'
|
|
uses: actions/checkout@v4
|
|
|
|
- name: '📦 Set up Go'
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version: '1.26.2'
|
|
- run: go version
|
|
|
|
- name: '🦠 Scan PDF files using VT'
|
|
uses: crazy-max/ghaction-virustotal@v5
|
|
with:
|
|
vt_api_key: ${{ secrets.VT_API_KEY }}
|
|
files: |
|
|
./export/thgtoa.pdf
|
|
./export/thgtoa-dark.pdf
|