mirror of
https://github.com/actions/runner-images.git
synced 2025-12-10 11:07:02 +00:00
* virtual-environments => runner-images - as per https://github.blog/changelog/2022-08-08-github-actions-runner-images-repository-refresh * revert readme changes - as per https://github.com/actions/runner-images/pull/6033#discussion_r941173809
27 lines
823 B
Bash
27 lines
823 B
Bash
#!/bin/bash -e
|
|
|
|
imagedata_file=$IMAGEDATA_FILE
|
|
image_version=$IMAGE_VERSION
|
|
os_name=$(lsb_release -ds | sed "s/ /\\\n/g")
|
|
os_version=$(lsb_release -rs)
|
|
image_label="ubuntu-${os_version}"
|
|
version_major=${os_version/.*/}
|
|
version_wo_dot=${os_version/./}
|
|
github_url="https://github.com/actions/runner-images/blob"
|
|
|
|
software_url="${github_url}/ubuntu${version_major}/${image_version}/images/linux/Ubuntu${version_wo_dot}-Readme.md"
|
|
releaseUrl="https://github.com/actions/runner-images/releases/tag/ubuntu${version_major}%2F${image_version}"
|
|
|
|
cat <<EOF > $imagedata_file
|
|
[
|
|
{
|
|
"group": "Operating System",
|
|
"detail": "${os_name}"
|
|
},
|
|
{
|
|
"group": "Virtual Environment",
|
|
"detail": "Environment: ${image_label}\nVersion: ${image_version}\nIncluded Software: ${software_url}\nImage Release: ${releaseUrl}"
|
|
}
|
|
]
|
|
EOF
|