Skip to content

NilsMoller/nx-release-bug-report

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bug report for nx release

Full reproduction steps

This repository is already at step 7 (with step 6 being completed already).

The steps taken to reproduce the issue:

  1. Create a new nx monorepo: npx create-nx-workspace@20.5.0-beta.4
  2. Add the nx/js package: nx add @nx/js
  3. Generate a library to publish: nx g @nx/js:lib packages/my-package
  4. Add the following release config to nx.json:
"release": {
  "releaseTagPatternCheckAllBranchesWhen": true,
  "git": {
    "commitMessage": "chore: bump versions [skip ci]"
  },
  "version": {},
  "changelog": {
    "projectChangelogs": true
  },
  "groups": {
    "packages": {
      "projectsRelationship": "independent",
      "projects": [
        "packages/my-package"
      ],
      "releaseTagPattern": "release/package/{projectName}/{version}"
    }
  }
}
  1. Run nx release --skip-publish --first-release to successfully generate the first release.
  2. Change some code in the library and commit it.
  3. Run nx release --skip-publish to generate a new release.
  4. Watch the failure output in the console.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published