Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore: Improve admin docs #479

Merged
merged 3 commits into from
Nov 22, 2023
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion ADMIN.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,21 @@ Add new library to "nightly" and "publish" CI [workflows](https://github.com/dfi

## Release

To release a version to npm, create a release in GitHub. This will start an action that build and publish the libraries.
Steps to release new versions of the libraries.

1. Create a PR bumping versions

- Upgrade `"version"` in all needed packages.
peterpeterparker marked this conversation as resolved.
Show resolved Hide resolved
- Update intra-library dependencies.
- Run `npm install` from root directory
- Update Changelog

Example PR: https://github.com/dfinity/ic-js/pull/475

2. Create a new release in Github page.
peterpeterparker marked this conversation as resolved.
Show resolved Hide resolved

This will start an action that build and publish the libraries.

3. Create a new PR

To open next version afterward, bump the libraries' version and add a note in [CHANGELOG](./CHANGELOG.md).
Loading