We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ebb70a commit 6faa3beCopy full SHA for 6faa3be
.github/workflows/release.yml
@@ -141,7 +141,7 @@ jobs:
141
path: build/windows/**/*
142
if-no-files-found: error
143
144
- release:
+ draft_release:
145
name: Draft Release
146
needs:
147
- build_for_linux
@@ -175,13 +175,17 @@ jobs:
175
file ./scan/*
176
sha256sum ./scan/*
177
- name: Submit to VirusTotal
178
+ id: virustotal
179
uses: crazy-max/ghaction-virustotal@v4
180
with:
181
vt_api_key: ${{ secrets.VIRUSTOTAL_API_KEY }}
182
request_rate: 4
183
files: |
184
./scan/*
- - name: Release
185
+ - name: Add VirusTotal Info
186
+ run: |
187
+ echo '${{ toJSON(steps.virustotal.outputs) }}'
188
+ - name: Draft Release
189
uses: softprops/action-gh-release@v2
190
if: startsWith(github.ref, 'refs/tags/v')
191
0 commit comments