From 3ddbd1ffddf382df6ef651d0a9de68923195c6e5 Mon Sep 17 00:00:00 2001 From: Nick Maludy Date: Mon, 19 Oct 2020 21:18:36 -0400 Subject: [PATCH] Added -y to repoquery command so el8 imports GPG keys --- actions/workflows/install_latest_revision_of_rpm_pkg.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/actions/workflows/install_latest_revision_of_rpm_pkg.yaml b/actions/workflows/install_latest_revision_of_rpm_pkg.yaml index 1cae53c..b2c193e 100644 --- a/actions/workflows/install_latest_revision_of_rpm_pkg.yaml +++ b/actions/workflows/install_latest_revision_of_rpm_pkg.yaml @@ -10,8 +10,8 @@ tasks: action: core.remote input: hosts: <% ctx().host %> - cmd: repoquery --show-duplicates <% ctx().pkg %>-<% ctx().version %>* | sort --version-sort | tail -n 1 - timeout: + cmd: repoquery -y --show-duplicates <% ctx().pkg %>-<% ctx().version %>* | sort --version-sort | tail -n 1 + timeout: 120 next: - when: <% succeeded() %> publish: @@ -24,3 +24,4 @@ tasks: hosts: <% ctx().host %> cmd: sudo yum install -y <% ctx().pkg_name_with_revision %> timeout: 180 +