Skip to content

Commit

Permalink
Artifact path error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pmathew92 committed Oct 29, 2024
1 parent a9ae920 commit d852293
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
uses: ./.github/workflows/rl-scanner.yml
with:
java-version: 8.0.402-zulu
artifact-name: 'auth0-release.aar'
secrets:
RLSECURE_LICENSE: ${{ secrets.RLSECURE_LICENSE }}
RLSECURE_SITE_KEY: ${{ secrets.RLSECURE_SITE_KEY }}
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/rl-scanner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
java-version:
required: true
type: string
artifact-name:
required: true
type: string
secrets:
RLSECURE_LICENSE:
required: true
Expand Down Expand Up @@ -57,12 +60,11 @@ jobs:
echo "scanfile=$(pwd)/auth0/build/outputs/aar/auth0-release-${{ steps.get_version.outputs.version }}.aar" >> $GITHUB_OUTPUT
- name: Run Reversing Labs Scanner
id: rl-scan-conclusion
uses: ./.github/actions/rl-scanner
with:
artifact-path: "$(pwd)/${{ inputs.artifact-name }}"
artifact-path: "$(pwd)/auth0/build/outputs/aar/${{artifact-name}}"
version: "${{ steps.get_version.outputs.version }}"
env:
RLSECURE_LICENSE: ${{ secrets.RLSECURE_LICENSE }}
Expand Down

0 comments on commit d852293

Please sign in to comment.