Skip to content

Commit 16a5885

Browse files
cursoragentlovasoa
andcommitted
Fix: Install RPMs from correct x86_64 subdirectory
Co-authored-by: contact <[email protected]>
1 parent 74d549c commit 16a5885

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/packages.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,8 @@ jobs:
256256
- name: Install package
257257
run: |
258258
ls -la
259-
dnf install -y ./*.rpm
259+
find . -name "*.rpm" -type f
260+
dnf install -y ./x86_64/*.rpm
260261
261262
- name: Verify installation
262263
run: |
@@ -303,7 +304,8 @@ jobs:
303304
- name: Install package
304305
run: |
305306
ls -la
306-
yum install -y ./*.rpm
307+
find . -name "*.rpm" -type f
308+
yum install -y ./x86_64/*.rpm
307309
308310
- name: Verify installation
309311
run: |

0 commit comments

Comments
 (0)