Skip to content

Commit

Permalink
Fix broken path
Browse files Browse the repository at this point in the history
  • Loading branch information
developerkunal committed Sep 9, 2024
1 parent c5a0faf commit d3613ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rl-scanner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Output build artifact
id: output_build_artifact
run: |
echo "scanfile=build/libs/auth0-0.0.1-SNAPSHOT.jar" >> $GITHUB_OUTPUT
echo "scanfile=$(pwd)/build/libs/auth0-0.0.1-SNAPSHOT.jar" >> $GITHUB_OUTPUT
- name: Set up Python
uses: actions/setup-python@v4
Expand All @@ -64,7 +64,7 @@ jobs:
SIGNAL_HANDLER_TOKEN: ${{ secrets.SIGNAL_HANDLER_TOKEN }}
run: |
python scripts/rl-wrapper.py \
--artifact "$(pwd)/${{ steps.output_build_artifact.outputs.scanfile }}" \
--artifact "${{ steps.output_build_artifact.outputs.scanfile }}" \
--name "${{ github.event.repository.name }}" \
--version "${{ steps.get_version.outputs.version }}" \
--repository "${{ github.repository }}" \
Expand Down

0 comments on commit d3613ab

Please sign in to comment.