Skip to content

Commit

Permalink
Update Support Pipeline.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
IGDEXE authored Feb 29, 2024
1 parent d02d610 commit babc73f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/Support Pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,13 @@ jobs:
go install github.com/relaxnow/vcgopkg@latest
vcgopkg
ls
- name: Find ZIP file
run: |
zip_file=$(find /caminho/do/diretório -type f -name "*.zip" | head -n 1)
echo "ZIP file found at: $zip_file"
echo "##[set-output name=zip_path;]$zip_file"
id: find_zip

- name: UploadAndScan
uses: veracode/veracode-uploadandscan-action@master # Faz a analise da Veracode
env:
Expand All @@ -36,5 +43,5 @@ jobs:
criticality: 'VeryHigh'
appname: '$AppName'
createsandbox: true
filepath: '/home/runner/work/govwa/govwa/veracode/*.zip'
filepath: ${{ steps.find_zip.outputs.zip_path }}
version: ${{ github.run_id }}

0 comments on commit babc73f

Please sign in to comment.