mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 22:26:56 +00:00
21 lines
632 B
Bash
21 lines
632 B
Bash
#!/bin/bash
|
|
################################################################################
|
|
## File: preparemetadata.sh
|
|
## Desc: This script adds a image title information to the metadata
|
|
## document
|
|
################################################################################
|
|
|
|
source $HELPER_SCRIPTS/document.sh
|
|
|
|
WriteItem "<!--- DO NOT EDIT - This markdown file is autogenerated. -->"
|
|
|
|
if [ -n "$ANNOUNCEMENTS" ]; then
|
|
WriteItem "$ANNOUNCEMENTS"
|
|
WriteItem "***"
|
|
fi
|
|
|
|
|
|
AddTitle "$(lsb_release -ds)"
|
|
WriteItem "The following software is installed on machines with the $IMAGE_VERSION update."
|
|
WriteItem "***"
|