Steps when releasing actinia-core:
- If the release is a major update, it needs to be prepared like described in the WIKI.
- Run in terminal
ESTIMATED_VERSION=3.0.1 gh api repos/mundialis/actinia_core/releases/generate-notes -f tag_name="$ESTIMATED_VERSION" -f target_commitish=main -q .body - Go to https://github.com/mundialis/actinia_core/releases/new
- Copy the output of terminal command to the release description
- Change heading
## What's Changedto### Changed,### Fixed,### Addedor what applicable and sort list amongst these headings. - You can compare manually if all changes are included. If changes were pushed directly to main branch, they are not included.
- Check if
ESTIMATED_VERSIONincrease still fits - we follow Semantic Versioning - Fill in tag and release title with this version
- At the bottom of the release, add
"generated with
gh api repos/mundialis/actinia_core/releases/generate-notes -f tag_name="$ESTIMATED_VERSION" -f target_commitish=main -q .body" and replace$ESTIMATED_VERSIONwith the actual version. - DO NOT click "save" yet!!
- In CITATION.cff, update version and date-released in main branch
- Now you can save the release
- Run in terminal
curl https://api.github.com/repos/mundialis/actinia_core/releases/latest | jq -r '. | "## [\(.tag_name)] - \(.published_at | strptime("%Y-%m-%dT%H:%M:%SZ") | strftime("%Y-%m-%d"))\nreleased from \(.target_commitish)\n\(.body) \n"' - Copy the output to the top of the release list in CHANGELOG.md
- Push changes in CHANGELOG.md to main branch (before, you might need to pull changes from CITATION.cff).