Skip to content

Commit

Permalink
Adding Gem File Path Correction Logic
Browse files Browse the repository at this point in the history
  • Loading branch information
kishore7snehil committed Oct 28, 2024
1 parent f59911d commit 6792fdc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/rl-scanner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ jobs:
shell: bash
run: |
gem build *.gemspec
export GEM_FILE=$(ls *.gem)
echo "gem_file=$GEM_FILE" >> $GITHUB_ENV
- name: Get Artifact Version
id: get_version
Expand All @@ -48,7 +50,7 @@ jobs:
id: rl-scan-conclusion
uses: ./.github/actions/rl-scanner
with:
artifact-path: "$(pwd)/*.gem"
artifact-path: "$(pwd)/${{ env.gem_file }}"
version: "${{ steps.get_version.outputs.version }}"
env:
RLSECURE_LICENSE: ${{ secrets.RLSECURE_LICENSE }}
Expand Down

0 comments on commit 6792fdc

Please sign in to comment.