-
Notifications
You must be signed in to change notification settings - Fork 28
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
CHANGELOG.md not getting created/generated #127
Comments
So, it looks like I narrowed the problem down. But I still kind of wanna know why. Or maybe it still is a bug, I don't know. Basically, I removed the preset options for branches:
- master
repositoryUrl: https://github.com/emme1444/analyst-test4.git
plugins:
- "@semantic-release/commit-analyzer"
- "@semantic-release/release-notes-generator"
- "@semantic-release/changelog"
- "semantic-release-dart"
- "@semantic-release/git":
assets:
- "CHANGELOG.md"
- "pubspec.yaml"
- "pubspec.lock"
dryRun: false
debug: true Anyway, I still kind of wanna know why this happens. Have I missed something? I initially intended to use the Conventional Commits spec, so would be useful to know. |
|
I'm experiencing the same problem with |
I know there has been a number of these issues on here, but none of those answer my question / fix my problem.
It used to work, but in the process of testing out configurations now all of a sudden, it's not working. It doesn't create the
CHANGELOG.md
file. However, all the other plugins seem to work fine.Here you can see the log output of
semantic-release
along with its associated configuration..releaserc.yaml
:debug output of
semantic-release
:As you can see it publishes the release (
1.0.0
). But in between 'ℹ Start step "prepare" of plugin "@semantic-release/changelog"' and '✔ Completed step "prepare" of plugin "@semantic-release/changelog"'; no logs are written to indicate whether a file was created/generated. In fact, in the cicd pipeline I added anls -lah
command to list the files in the current directory/workspace directory, and this is what that prints (noCHANGELOG.md
):ls -lah
output:I've tried stripping the configuration down, but can't seem to figure out where I went wrong.
Thanks for the help!
The text was updated successfully, but these errors were encountered: