Only few releases are picked. #177
Answered
by
nikhilbadyal
nikhilbadyal
asked this question in
Q&A
-
BehaviourI had a release that contained 4 APK files. Out of those 4 files. I can only see the analysis of 2 files. Expected behaviorAll 4 files should be sent for a scan. Actual behaviourOnly 2 files were sent for a scan. Configurationname: VirusTotal Scan
on:
release:
types: [published]
workflow_dispatch: # to trigger manually
jobs:
virustotal:
runs-on: ubuntu-latest
steps:
- name: VirusTotal Scan
uses: crazy-max/ghaction-virustotal@v3
with:
vt_api_key: ${{ secrets.VT_API_KEY }}
update_release_body: true
github_token: ${{ secrets.GH_TOKEN }}
files: |
.apk$
Logs |
Beta Was this translation helpful? Give feedback.
Answered by
nikhilbadyal
Oct 24, 2022
Replies: 1 comment
-
Looks like releases are not immediately detected. I added a sleep of 10second sleep in my CI and everything works now. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
nikhilbadyal
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Looks like releases are not immediately detected. I added a sleep of 10second sleep in my CI and everything works now.