Skip to content

Commit

Permalink
Update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
developerkunal committed Sep 9, 2024
1 parent 2c4ee1e commit 93ac59e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/rl-scanner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ jobs:
- name: List build/libs contents
run: ls -la build/libs

- name: Output build artifact
id: output_build_artifact
run: |
echo "scanfile=$(ls build/libs/auth0-*-SNAPSHOT.jar)" >> $GITHUB_OUTPUT
- name: Set up Python
uses: actions/setup-python@v4
with:
Expand All @@ -59,7 +64,7 @@ jobs:
SIGNAL_HANDLER_TOKEN: ${{ secrets.SIGNAL_HANDLER_TOKEN }}
run: |
python scripts/rl-wrapper.py \
--artifact "build/libs" \
--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 93ac59e

Please sign in to comment.