Files
sublime-music/cicd/publish-gitlab-release.sh
2020-06-07 10:42:05 -06:00

96 lines
2.3 KiB
Bash
Executable File

#! /bin/bash
set -e
echo "VARIABLES"
echo "CI_COMMIT_TAG=${CI_COMMIT_TAG}"
echo "CI_API_V4_URL=${CI_API_V4_URL}"
echo "CI_PROJECT_ID=${CI_PROJECT_ID}"
echo "CI_PIPELINE_ID=${CI_PIPELINE_ID}"
echo "CI_PROJECT_URL=${CI_PROJECT_URL}"
# The release notes for this version should be the first line of the CHANGELOG.
if [[ $(head -n 1 CHANGELOG.rst) == "${CI_COMMIT_TAG}" ]]; then
# Extract all of the bullet points and other things until the next header.
i=0
first=1
while read l; do
i=$(( $i + 1 ))
if [[ $l =~ ^=+$ ]]; then
if [[ $first == 0 ]]; then
break
fi
first=0
fi
if [[ "${l:0:11}" == ":Milestone:" ]]; then
milestone="$(echo $l | sed -n 's/:Milestone: \(.*\)/\1/p')"
fi
done < CHANGELOG.rst
# i is now the index of the line below the second header.
description="
Release Notes
#############
$(head -n $(( $i - 2 )) CHANGELOG.rst | tail -n $(( $i - 5 )))"
fi
if [[ "${description}" == "" ]]; then
description="No description provided for this release."
fi
description=$(echo "$description" | rst2html5 --no-indent --template "{body}" | sed -e 's/\"/\\\"/g')
milestones=""
if [[ "${milestone}" != "" ]]; then
milestones=",\"milestones\":[\"${milestone}\"]"
fi
# Determine whether or not to include the Flatpak build.
set +e
failed=$(curl \
--header "PRIVATE-TOKEN: ${RELEASE_PUBLISH_TOKEN}" \
--request GET \
"${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/pipelines/${CI_PIPELINE_ID}/jobs?scope[]=failed" \
| grep '"name":"build_flatpak"')
set -e
assets=""
if [[ $failed == "" ]]; then
assets=",
\"assets\": {
\"links\": [
{
\"name\": \"sublime-music-${CI_COMMIT_TAG}.flatpak\",
\"url\": \"${CI_PROJECT_URL}/-/jobs/artifacts/${CI_COMMIT_TAG}/raw/flatpak/sublime-music.flatpak?job=build_flatpak\"
}
]
}
"
fi
url="${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/releases"
data="
{
\"name\": \"${CI_COMMIT_TAG}\",
\"tag_name\": \"${CI_COMMIT_TAG}\",
\"description\": \"${description}\"
${milestones}
${assets}
}
"
echo "URL:"
echo "$url"
echo "DATA:"
echo "$data"
curl \
--header 'Content-Type: application/json' \
--header "PRIVATE-TOKEN: ${RELEASE_PUBLISH_TOKEN}" \
--data "$data" \
--request POST \
$url