Skip to content

Commit

Permalink
Correct Prepare DEB/RPM Upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Lord-Grey committed Jun 14, 2024
1 parent b687baa commit 2d0f224
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish_deb_rpm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
shell: bash
run: |
echo '::group::[APT] Create initial structure and include artifacts into package source'
DEB_PACKAGES=$(find "artifact-*" -name "*.deb" -type f 2>/dev/null)
DEB_PACKAGES=$(find . -path "./artifact-*" -type f -name "*.deb" 2>/dev/null)
DEB_PACKAGE_NUM=$(echo "$DEB_PACKAGES" | wc -w)
if [[ $DEB_PACKAGE_NUM -gt 0 ]]; then
mkdir -p deb/{conf,dists,db}
Expand All @@ -72,7 +72,7 @@ jobs:
echo '::endgroup::'
echo '::group::[DNF] Make folders, sign/copy packages and create metadata/manifest files'
RPM_PACKAGES=$(find "artifact-*" -name "*.rpm" -type f 2>/dev/null)
RPM_PACKAGES=$(find . -path "./artifact-*" -type f -name "*.rpm" 2>/dev/null)
RPM_PACKAGE_NUM=$(echo "$RPM_PACKAGES" | wc -w)
if [[ $RPM_PACKAGE_NUM -gt 0 ]]; then
mkdir rpm/
Expand Down

0 comments on commit 2d0f224

Please sign in to comment.