I spent many hours in the semantic-release repo figuring why the version file wouldn't be created only to find out that it does get created but gets deleted by this action. I am not exactly sure what the rationale was for deleting this file. Also, if this is something the user needs (as well as the changelog file if defined), don't we need to perform git add, git commit and git push so save these changes?
|
await fs.unlink(versionFilename) |
I spent many hours in the
semantic-releaserepo figuring why the version file wouldn't be created only to find out that it does get created but gets deleted by this action. I am not exactly sure what the rationale was for deleting this file. Also, if this is something the user needs (as well as the changelog file if defined), don't we need to perform git add, git commit and git push so save these changes?action/src/index.ts
Line 100 in 1b14387