From d3613ab1793943c7ff235e57ed54a8e9f3777d95 Mon Sep 17 00:00:00 2001 From: Kunal Dawar Date: Mon, 9 Sep 2024 19:08:04 +0530 Subject: [PATCH] Fix broken path --- .github/workflows/rl-scanner.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rl-scanner.yml b/.github/workflows/rl-scanner.yml index d64b8a9f..1ea29637 100644 --- a/.github/workflows/rl-scanner.yml +++ b/.github/workflows/rl-scanner.yml @@ -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 @@ -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 }}" \