From 8e4de5b94ce11b2a1524f6ab872f82025a1294eb Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Fri, 7 Aug 2020 21:31:27 +0200 Subject: [PATCH] Update released workflow --- .github/workflows/released.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/released.yml b/.github/workflows/released.yml index 9678252..3f0a187 100644 --- a/.github/workflows/released.yml +++ b/.github/workflows/released.yml @@ -8,13 +8,18 @@ jobs: virustotal: runs-on: ubuntu-latest steps: + - + name: Prepare + id: prepare + run: | + echo ::set-output name=date::$(date -u +'%Y%m%d') - name: VirusTotal Monitor Scan uses: crazy-max/ghaction-virustotal@v2.2.0 with: vt_api_key: ${{ secrets.VT_MONITOR_API_KEY }} vt_monitor: true - monitor_path: /${{ github.event.repository.name }}/${{ github.event.release.tag_name }} + monitor_path: /portapps/${{ steps.prepare.outputs.date }}/${{ github.event.repository.name }}-${{ github.event.release.tag_name }} update_release_body: false github_token: ${{ secrets.GITHUB_TOKEN }} files: |