Skip to content

Commit

Permalink
update script
Browse files Browse the repository at this point in the history
  • Loading branch information
hmottestad committed Aug 3, 2024
1 parent 2dd9772 commit ed0e817
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,19 @@ cp -f "site/static/javadoc/${MVN_VERSION_RELEASE}.tgz" "site/static/javadoc/late
git add --all
git commit -s -a -m "javadocs for ${MVN_VERSION_RELEASE}"
git push --set-upstream origin "${RELEASE_NOTES_BRANCH}"
gh pr create -B main --title "${RELEASE_NOTES_BRANCH}" --body "Javadocs, release-notes and news item for ${MVN_VERSION_RELEASE}.\n\n - [ ] check that [Jenkins](https://ci.eclipse.org/rdf4j/) finished publishing the release\n - [ ] remember to also [add the release here on GitHub](https://github.com/eclipse-rdf4j/rdf4j/releases/new?tag=${MVN_VERSION_RELEASE}&title=RDF4JRDF4J%20${MVN_VERSION_RELEASE}) (include announcement)"
BODY_CONTENT=$(cat <<EOF
Javadocs, release-notes and news item for ${MVN_VERSION_RELEASE}.
- [ ] check that downloads.md is updated
- [ ] check that the release notes file is updated
- [ ] check that the news item file is updated
- [ ] check that [Jenkins](https://ci.eclipse.org/rdf4j/job/rdf4j-deploy-release-ossrh/) finished publishing the release
- [ ] check that [Jenkins](https://ci.eclipse.org/rdf4j/job/rdf4j-deploy-release-sdk/) finished publishing the sdk
- [ ] remember to also [add the release here on GitHub](https://github.com/eclipse-rdf4j/rdf4j/releases/new?tag=${MVN_VERSION_RELEASE}&title=RDF4J%20${MVN_VERSION_RELEASE}) (include announcement)
EOF
)

gh pr create -B main --title "${MVN_VERSION_RELEASE} release notes" --body "$BODY_CONTENT"

echo "Javadocs are in git branch ${RELEASE_NOTES_BRANCH}"

Expand Down

0 comments on commit ed0e817

Please sign in to comment.