Questions tagged [release]
A release or releasing is the act of making features or bug fixes available for consumption. A release is not necessarily the same as a deployment, with the latter being the promotion of code into an environment, feature flags or toggles may be used to hide new functionality from consumers.
23 questions
0 votes
1 answer
153 views
Best artifactory type for Azure release pipeline
We've just started to use Azure DevOps platform and having some doubts regarding artifactory type for release pipeline. Here's the situation: we get complete delivery in zip file from Dev team which ...
3 votes
1 answer
3k views
Best practice for building releases with Jenkins multibranch pipeline
We have started moving from Subversion to git (using Bitbucket, to be exact), and I'm unsure how to manage release builds with the multibranch concept. This is how we do it in Subversion: We have one ...
2 votes
1 answer
487 views
Why should I tag a commit to create a release?
I work on a new CICD, replacing Jenkins-X 2 by GitHub Actions. After seeing a lot of actions to create a release + changelog, I found that a lot of them are trigger by a tag on a commit to launch the ...
1 vote
2 answers
380 views
GUI over GitLab CI Environment Deployments With Multiple Instances?
Let's say I have a SaaS style project (similar to Databricks). We may make release 2.0.0 of this project, have automated testing and deployment to dev, automated promotion to nonprod, etc. In ...
3 votes
1 answer
510 views
When to "npm publish" when using git flow
I'm using the following resources as a guide to git flow: git-flow cheatsheet git-flow Using git-flow to automate your git branching workflow However, none of them explicitly mention at what point you ...
2 votes
2 answers
2k views
Git Release branching strategy for Continuous integration and deployment
We have tried multiple branching strategies to adopt CI/CD. Developers develop on the feature branch and then merging to master which get deployed to QA for testing and then master is deployed to ...
0 votes
1 answer
80 views
Organizing the build steps on AzureDevOps
I am new on DevOps world and I am making my first build/release pipeline for a .net web application using Azure DevOps. On the picture bellow, I just add some build steps and create some tasks groups ...
5 votes
1 answer
5k views
What is difference between release and deployment?
What is the basic difference between software release and deploy? What is the relation between software release management and continuous deployment?