mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-20 06:29:50 +00:00
* Add Windows announcements * Minor fix * Add Ubuntu announcements * Minor fix * Add announcements to win16 template * Cleanup announcement files * Rename announcements files
18 lines
623 B
Bash
18 lines
623 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. -->"
|
|
|
|
Announcements=$(cat $HELPER_SCRIPTS/announcements.md)
|
|
WriteItem $Announcements
|
|
|
|
AddTitle "$(lsb_release -ds)"
|
|
WriteItem "The following software is installed on machines with the $IMAGE_VERSION update."
|
|
WriteItem "***"
|