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"