File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,9 @@ set -euo pipefail
44SEV_VERSIONS=(" 3.0-0" )
55SEV_CERT_FILE=" "
66
7+ # Temporarily hardcode the milestone name
8+ MILESTONE=" c3.0.0-0"
9+
710# Determine OS name and version
811if [ -f /etc/os-release ]; then
912 . /etc/os-release
@@ -37,7 +40,7 @@ for sev_version in "${SEV_VERSIONS[@]}"; do
3740 # Call beacon
3841 if [ -e " ${SEV_CERT_FILE} " ] && [ -z " $( grep " ❌" " ${SEV_CERT_FILE} " ) " ]; then
3942 # Add milestone if no errors encountered
40- beacon report --title " $SEV_TITLE " --body " $SEV_CERT_FILE " --label " certificate" --label " os-${OS_LABEL} " --milestone " v ${sev_version} "
43+ beacon report --title " $SEV_TITLE " --body " $SEV_CERT_FILE " --label " certificate" --label " os-${OS_LABEL} " --milestone " $MILESTONE "
4144 else
4245 beacon report --title " $SEV_TITLE " --body " $SEV_CERT_FILE " --label " certificate" --label " os-${OS_LABEL} "
4346 fi
You can’t perform that action at this time.
0 commit comments