Update publish release notes script

The milestone name and tag name can be different if the release type
is ".RELEASE".
This commit is contained in:
Madhura Bhave 2018-09-24 11:10:48 -04:00
parent 885948ce3b
commit ea3d9b4ead
3 changed files with 11 additions and 5 deletions

View File

@ -329,6 +329,7 @@ jobs:
image: spring-boot-ci-image
file: git-repo/ci/tasks/publish-release-notes.yml
params:
RELEASE_TYPE: M
GITHUB_ORGANIZATION: spring-projects
GITHUB_REPO: spring-boot
GITHUB_USERNAME: ((github-username))
@ -339,6 +340,7 @@ jobs:
- get: spring-boot-ci-image
- get: git-repo
trigger: false
- get: release-notes-repo
- task: stage
image: spring-boot-ci-image
file: git-repo/ci/tasks/stage.yml
@ -355,6 +357,7 @@ jobs:
image: spring-boot-ci-image
file: git-repo/ci/tasks/publish-release-notes.yml
params:
RELEASE_TYPE: RC
GITHUB_ORGANIZATION: spring-projects
GITHUB_REPO: spring-boot
GITHUB_USERNAME: ((github-username))
@ -365,6 +368,7 @@ jobs:
- get: spring-boot-ci-image
- get: git-repo
trigger: false
- get: release-notes-repo
- task: stage
image: spring-boot-ci-image
file: git-repo/ci/tasks/stage.yml
@ -381,6 +385,7 @@ jobs:
image: spring-boot-ci-image
file: git-repo/ci/tasks/publish-release-notes.yml
params:
RELEASE_TYPE: RELEASE
GITHUB_ORGANIZATION: spring-projects
GITHUB_REPO: spring-boot
GITHUB_USERNAME: ((github-username))

View File

@ -3,10 +3,10 @@ set -e
source $(dirname $0)/common.sh
latest=$( curl -s "https://api.github.com/repos/${GITHUB_ORGANIZATION}/${GITHUB_REPO}/releases/latest" -u ${GITHUB_USERNAME}:${GITHUB_PASSWORD} )
id=$( echo $latest | jq -r '.id' )
milestone=$( cat version/stageVersion )
if [[ $RELEASE_TYPE = "RELEASE" ]]; then
milestone=${milestone%.RELEASE}
fi
milestone_number=$( curl -s "https://api.github.com/repos/${GITHUB_ORGANIZATION}/${GITHUB_REPO}/milestones" -u ${GITHUB_USERNAME}:${GITHUB_PASSWORD} | jq -r --arg MILESTONE "${milestone}" '.[] | select(.title == $MILESTONE) | .number')
pushd release-notes-repo > /dev/null
@ -21,7 +21,7 @@ curl \
-s \
-u ${GITHUB_USERNAME}:${GITHUB_PASSWORD} \
-H "Content-type:application/json" \
-d "{\"body\": \"${body}\"}" \
-d "{\"tag_name\":\"v{$milestone}\",\"name\":\"v{$milestone}\",\"body\": \"${body}\"}" \
-f \
-X \
PATCH "https://api.github.com/repos/${GITHUB_ORGANIZATION}/${GITHUB_REPO}/releases/${id}" > /dev/null || { echo "Failed to publish" >&2; exit 1; }
POST "https://api.github.com/repos/${GITHUB_ORGANIZATION}/${GITHUB_REPO}/releases" > /dev/null || { echo "Failed to publish" >&2; exit 1; }

View File

@ -9,5 +9,6 @@ params:
GITHUB_REPO:
GITHUB_USERNAME:
GITHUB_PASSWORD:
RELEASE_TYPE:
run:
path: git-repo/ci/scripts/publish-release-notes.sh