This document outlines the process for creating a new release for Directory Runtime packages.
All code block examples provided below correspond to an update to version v1.0.0, please update accordingly.
Prepare a new release for the desired version by running the following command:
task release:create RELEASE_VERSION=v1.0.0- After the pull request is approved and merged, update your local main branch.
git checkout main
git pull origin main- To trigger the release workflow, create and push to the repository a release tag for the last commit.
git tag -a v1.0.0
git push origin v1.0.0Please note that the release tag is not necessarily associated with the "release: prepare version v1.0.0" commit. For example, if any bug fixes were required after this commit, they can be merged and included in the release.
-
Wait until the release workflow is completed successfully.
-
Navigate to the Releases page and verify the draft release description as well as the assets listed.
-
Once the draft release has been verified, click on
Editrelease and then onPublish Release.