From 20705eae3581b34ff79b00795e85a16ce422cb2e Mon Sep 17 00:00:00 2001 From: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com> Date: Wed, 22 Dec 2021 21:24:04 +0300 Subject: [PATCH] Change capitalization for Readme name in CI ymls (#4796) --- images.CI/linux-and-win/azure-pipelines/ubuntu1804.yml | 2 +- images.CI/linux-and-win/azure-pipelines/ubuntu2004.yml | 2 +- images/linux/scripts/installers/preimagedata.sh | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/images.CI/linux-and-win/azure-pipelines/ubuntu1804.yml b/images.CI/linux-and-win/azure-pipelines/ubuntu1804.yml index e7c303fdf..44823c63f 100644 --- a/images.CI/linux-and-win/azure-pipelines/ubuntu1804.yml +++ b/images.CI/linux-and-win/azure-pipelines/ubuntu1804.yml @@ -17,4 +17,4 @@ jobs: - template: image-generation.yml parameters: image_type: ubuntu1804 - image_readme_name: Ubuntu1804-README.md \ No newline at end of file + image_readme_name: Ubuntu1804-Readme.md \ No newline at end of file diff --git a/images.CI/linux-and-win/azure-pipelines/ubuntu2004.yml b/images.CI/linux-and-win/azure-pipelines/ubuntu2004.yml index f46e717ee..4bf78c183 100644 --- a/images.CI/linux-and-win/azure-pipelines/ubuntu2004.yml +++ b/images.CI/linux-and-win/azure-pipelines/ubuntu2004.yml @@ -17,4 +17,4 @@ jobs: - template: image-generation.yml parameters: image_type: ubuntu2004 - image_readme_name: Ubuntu2004-README.md \ No newline at end of file + image_readme_name: Ubuntu2004-Readme.md \ No newline at end of file diff --git a/images/linux/scripts/installers/preimagedata.sh b/images/linux/scripts/installers/preimagedata.sh index 747f22961..c494bed97 100644 --- a/images/linux/scripts/installers/preimagedata.sh +++ b/images/linux/scripts/installers/preimagedata.sh @@ -7,12 +7,12 @@ image_label="ubuntu-$(lsb_release -rs)" github_url="https://github.com/actions/virtual-environments/blob" if [[ "$image_label" =~ "ubuntu-20" ]]; then - software_url="${github_url}/ubuntu20/${image_version}/images/linux/Ubuntu2004-README.md" + software_url="${github_url}/ubuntu20/${image_version}/images/linux/Ubuntu2004-Readme.md" releaseUrl="https://github.com/actions/virtual-environments/releases/tag/ubuntu20%2F${image_version}" fi if [[ "$image_label" =~ "ubuntu-18" ]]; then - software_url="${github_url}/ubuntu18/${image_version}/images/linux/Ubuntu1804-README.md" + software_url="${github_url}/ubuntu18/${image_version}/images/linux/Ubuntu1804-Readme.md" releaseUrl="https://github.com/actions/virtual-environments/releases/tag/ubuntu18%2F${image_version}" fi