You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We will have to support stable branches starting from the 1.4.0 release. Currently this will not work properly. This is because in our pipeline we have the "Build and deploy to Maven" step:
One of the things this action does is updating the project version in the pom files. By default it does this change on the default branch, which in our case is main. At the moment I don't see a way to change this to a different branch. This means we have 2 options.
We stop using this action and add our own steps for deploying to Maven.
We make a change in the community-action-maven-release to support different branches. In our workflow we'd have to figure out which stable branch we need to use.
The text was updated successfully, but these errors were encountered:
We have decided to go with option 2. The change on the community-action-maven-release has been merged (camunda-community-hub/community-action-maven-release#37). Once a new release of this action has been released we can go ahead with the changes on our side.
This involves:
Adding a step to the pipeline to decide what branch should be used for the version update
Pass the branch as input parameter to the release action
Description
We will have to support stable branches starting from the
1.4.0
release. Currently this will not work properly. This is because in our pipeline we have the "Build and deploy to Maven" step:One of the things this action does is updating the project version in the pom files. By default it does this change on the default branch, which in our case is
main
. At the moment I don't see a way to change this to a different branch. This means we have 2 options.The text was updated successfully, but these errors were encountered: