Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 721 Bytes

RELEASING.md

File metadata and controls

42 lines (28 loc) · 721 Bytes

Releasing D2-ui packages

The root-level package.json contains the version key, which will be used to publish all packages.

Pushing directly to master is not allowed, so the version bump should be added to the PR that will be merged.

Publish to NPM

  1. Update the version in the working branch
yarn version
  1. Remove the local tag
git tag -d vXXX
  1. Push the bump commit
git push
  1. Merge the PR on Github

  2. Tag the master branch

git pull
git tag vXXX
git push --tags
  1. Start the release workflow manually

Go to the d2-ui release action and click "Run workflow" from master.