Lerna always lists all packages ready to publish when running workflow of Github actions

前端 未结 3 807
感情败类
感情败类 2021-02-10 07:18

Lerna does not correctly detect packages change during running workflow of Github actions.

  1. If I make none packages related changes, commit and runlerna up

3条回答
  •  抹茶落季
    2021-02-10 08:03

    There is also the option include-merged-tags

    So this should also solve the problem:

    lerna updated --include-merged-tags
    

    or for publishing:

    lerna publish --include-merged-tags
    

提交回复
热议问题