Skip to content

Commit 89a3717

Browse files
cursoragentlovasoa
andcommitted
Fix: Improve package install and verification steps
Co-authored-by: contact <contact@ophir.dev>
1 parent 16a5885 commit 89a3717

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/packages.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -256,13 +256,13 @@ jobs:
256256
- name: Install package
257257
run: |
258258
ls -la
259-
find . -name "*.rpm" -type f
259+
ls -la x86_64/ || true
260260
dnf install -y ./x86_64/*.rpm
261261
262262
- name: Verify installation
263263
run: |
264264
sqlpage --version
265-
which sqlpage
265+
command -v sqlpage
266266
rpm -q sqlpage
267267
test -f /usr/bin/sqlpage
268268
test -d /etc/sqlpage
@@ -304,13 +304,13 @@ jobs:
304304
- name: Install package
305305
run: |
306306
ls -la
307-
find . -name "*.rpm" -type f
307+
ls -la x86_64/ || true
308308
yum install -y ./x86_64/*.rpm
309309
310310
- name: Verify installation
311311
run: |
312312
sqlpage --version
313-
which sqlpage
313+
command -v sqlpage
314314
rpm -q sqlpage
315315
test -f /usr/bin/sqlpage
316316
test -d /etc/sqlpage

0 commit comments

Comments
 (0)