You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we use a custom script (./releaseNewVersion.sh) to release new versions of auspice which could be much simplified, and is constrained in its versitility (e.g. one can't release alpha/beta versions). It also uses a separate release branch which seems unnecessary since we use tags for each version release.
Suggested release mechanism
Should be as simple as
update changelog
npm version ... (has the benefit of updating package-lock.json, which we aren't currently doing)
git push
Publish to NPM. Currently this is done by travisCI from the release branch. Could be done manually via npm publish [--tag beta] or via GitHub actions / travisCI.
Rebuild docker image (same as above)
The text was updated successfully, but these errors were encountered:
context
Currently we use a custom script (
./releaseNewVersion.sh
) to release new versions of auspice which could be much simplified, and is constrained in its versitility (e.g. one can't release alpha/beta versions). It also uses a separaterelease
branch which seems unnecessary since we use tags for each version release.Suggested release mechanism
Should be as simple as
npm version ...
(has the benefit of updatingpackage-lock.json
, which we aren't currently doing)git push
release
branch. Could be done manually vianpm publish [--tag beta]
or via GitHub actions / travisCI.The text was updated successfully, but these errors were encountered: