Skip to content

Commit

Permalink
Merge pull request #213 from s3rj1k/rpm
Browse files Browse the repository at this point in the history
Update `compress files` stage file list generation.
  • Loading branch information
andywolk authored Jan 31, 2024
2 parents 6ba23ee + 44065bd commit f63521a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci-rpm-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:

- name: Compress files
run: |
tar -czvf ${{ inputs.TARGET_ARTIFACT_NAME }}.tar.gz $(ls | grep '.rpm\|hash.txt')
tar -czvf ${{ inputs.TARGET_ARTIFACT_NAME }}.tar.gz $(ls -1 | grep -E '(.rpm|hash.txt)$' | tr -s '\n' ' ')
- name: Generate SHA checksum
run: |
Expand Down

0 comments on commit f63521a

Please sign in to comment.