Skip to content

Commit

Permalink
Update rpmlint.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
EyeCantCU committed Dec 20, 2023
1 parent 8dfc4b1 commit 6a11605
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/rpmlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,11 @@ jobs:
uses: actions/checkout@v4

- name: Find spec files
id: spec-files
run: find ./*/*/ -type 'f' | grep ".spec"
run: |
SPECS=$(find ./ -type 'f' | grep ".spec")
echo "SPECS=$SPECS" >> $GITHUB_ENV
- name: Run rpmlint
uses: EyeCantCU/[email protected]
with:
rpmfiles: ${{ steps.spec-files.outputs }}
rpmfiles: ${{ env.SPECS }}

0 comments on commit 6a11605

Please sign in to comment.