Skip to content

Commit

Permalink
chore: mixed the wrong veracode check/upload conditions, upload not e…
Browse files Browse the repository at this point in the history
…nabled.
  • Loading branch information
drcgjung committed Aug 24, 2023
1 parent 53f8a5a commit c31e9b9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/veracode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,12 @@ jobs:
- name: Veracode Upload And Scan
uses: veracode/[email protected]
if: |
needs.secret-presence.outputs.VERACODE_API_ID && needs.secret-presence.outputs.VERACODE_API_KEY
needs.secret-presence.outputs.ORG_VERACODE_API_ID && needs.secret-presence.outputs.ORG_VERACODE_API_KEY
continue-on-error: true
with:
appname: knowledge-agents/${{ matrix.variant.name }}
createprofile: true
version: ${{ matrix.variant.name }}-${{ github.sha }}
filepath: ${{ matrix.variant.dir }}/target/${{ matrix.variant.name }}.tar.gz
vid: ${{ secrets.VERACODE_API_ID }}
vkey: ${{ secrets.VERACODE_API_KEY }}
vid: ${{ secrets.ORG_VERACODE_API_ID }}
vkey: ${{ secrets.ORG_VERACODE_API_KEY }}

0 comments on commit c31e9b9

Please sign in to comment.