Skip to content

Commit a75d057

Browse files
authored
Fix RPMS path (#16)
1 parent b363de2 commit a75d057

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/publish_unstable_package.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -334,10 +334,10 @@ jobs:
334334
335335
# Sign new RPM packages before copying them to the final repository
336336
echo "Signing new RPM packages..."
337-
find combined-rpms/rpms/${{ matrix.os.name }}${{ matrix.os.version }} -name "*.rpm" -exec rpmsign --addsign --key-id "${{ steps.gpg_id.outputs.GPG_ID }}" {} \;
337+
find combined-rpms/${{ matrix.os.name }}${{ matrix.os.version }} -name "*.rpm" -exec rpmsign --addsign --key-id "${{ steps.gpg_id.outputs.GPG_ID }}" {} \;
338338
339339
echo "Signed packages:"
340-
find combined-rpms/rpms/${{ matrix.os.name }}${{ matrix.os.version }} -name "*.rpm" | sort
340+
find combined-rpms/${{ matrix.os.name }}${{ matrix.os.version }} -name "*.rpm" | sort
341341
342342
- name: Prepare repository structure
343343
env:
@@ -353,7 +353,7 @@ jobs:
353353
354354
# Copy all signed RPMs from both architectures to the repository directory
355355
echo "Adding newly signed packages..."
356-
cp -r combined-rpms/rpms/${{ matrix.os.name }}${{ matrix.os.version }}/* s3uploads/${{ matrix.os.name }}${{ matrix.os.version }}/
356+
cp -r combined-rpms/${{ matrix.os.name }}${{ matrix.os.version }}/* s3uploads/${{ matrix.os.name }}${{ matrix.os.version }}/
357357
358358
# List all files to verify
359359
echo "All packages in repository:"

0 commit comments

Comments
 (0)