From 007221875e79a1b3c89ae26b7825a97f78cce005 Mon Sep 17 00:00:00 2001 From: Snir Sheriber Date: Thu, 3 Feb 2022 15:20:16 +0200 Subject: [PATCH] docs: update Release-Process.md with a reminder to test kata-deploy Fixes: #3611 Signed-off-by: Snir Sheriber --- docs/Release-Process.md | 1 + tools/packaging/scripts/lib.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/Release-Process.md b/docs/Release-Process.md index 5d6e913e80..3fc2f324a2 100644 --- a/docs/Release-Process.md +++ b/docs/Release-Process.md @@ -48,6 +48,7 @@ ### Merge all bump version Pull requests - The above step will create a GitHub pull request in the Kata projects. Trigger the CI using `/test` command on each bump Pull request. + - Trigger the test-kata-deploy workflow on the kata-containers repository bump Pull request using `/test_kata_deploy` (monitor under the "action" tab). - Check any failures and fix if needed. - Work with the Kata approvers to verify that the CI works and the pull requests are merged. diff --git a/tools/packaging/scripts/lib.sh b/tools/packaging/scripts/lib.sh index 8f4ba5e1cd..d53159a8cd 100644 --- a/tools/packaging/scripts/lib.sh +++ b/tools/packaging/scripts/lib.sh @@ -36,7 +36,7 @@ get_from_kata_deps() { local dependency="$1" versions_file="${this_script_dir}/../../../versions.yaml" - command -v yq &> /dev/null || die 'yq command is not in your $PATH' + command -v yq &>/dev/null || die 'yq command is not in your $PATH' result=$("yq" read -X "$versions_file" "$dependency") [ "$result" = "null" ] && result="" echo "$result"