I've found semantic-release and it looks very useful. But I'm wondering how to customize it to fit our workflow:
no dev branch, just a master and feature/fix/chore branches.
latest release (github with relevant git tag) correspond to version pushed…
I am using semantic-release with travis CI to automatically publish my package. I have two question:
My version has automatically been upgraded to v1.0.0. I want it to be something like v1.0.0-development. How can I do that?
Why my github's…
I'm currently trying to setup semantic-release to publish package.json with the updated version and CHANGELOG to both npm and GitHub. From what I've read, this seem possible using @semantic-release/git and @semantic-release/changelog plugins.…
Say the package was on 1.0.0,
it subsequently releases 1.0.1, and 1.0.2.
But then realize that 1.0.1 contains breaking changes.
So we need to release a 2.0.0 from 1.0.2 doing an empty commit. No problem there.
Then, we need to make a 1.0.3 release…
I am trying to setup semantic-release with Jenkins, and I stepped through the documentation, eggheadio, Github Issues, and of course Google. I am stuck and need some kind help.…
I am using semantic-release for automated versioning and releasing of my Git repository. However, I have made a mistake and committed a breaking change on the remote repository, and I want to change it to a fix or feature without altering the Git…
I'm writing a configuration for the semantic-release tool using the release.config.js file, which allows generating the configuration dynamically.
Now, I need to call several APIs during the loading process. I found that the best practice for…
I have the following action that first runs a semantic release and then builds a docker image. At the moment the image is tagged with master but I want it to be tagged with the release i.e. v1.0.8
I assumed that ${{ github.ref_name }} would refer to…
I have a problem.
We created gitlab token in our CI/CD
enter image description here
but I have an error when I push npx semantic-release
code: 'ENOGLTOKEN',
details: 'A [GitLab personal access…
I have installed the latest version of NodeJs (v18.14.0), but it still fails to do jobs, what should I do? this is the code from my workflow and the screenshot of the error.
# This workflow will do a clean installation of node dependencies,…
We're updating our release workflow to use semantic-release, and I need to be able to grab the SHA of the latest tag, create a new branch with it, build our assets, commit them to that new branch.
The action I'm using to create the branch, requires…