918 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
Best practices
0
votes
0
replies
27
views
What's the best method/tool to handle/track multiple clients with multiple different release versions of different applications?
My (quite small) organisation has multiple applications it manually deploys to customers; some of which integrate with each other.
For various reasons, customers don't upgrade application versions ...
0
votes
0
answers
33
views
How to handle semantic versioning when cloud and on-prem branches diverge?
I'm working on a project that maintains two active release branches:
10.0.x → for on-prem deployments
10.1.x → for cloud deployments
We have an automated system that merges changes from the on-prem ...
1
vote
1
answer
271
views
Release Bundle v2 promotion in Artifactory
I've implemented Bundle Releases v2. I've added the required environments (DEV/QA/STAGING/PROD).
The bundle should be named and version when created, now as I'm gradually promoting my bundle to prod ...
0
votes
1
answer
227
views
Release approval workflows for trunk-based continuous-deployment
In trunk-based development with separate production and test/staging environments, and in a GitOps context, what controls can teams apply to ensure rigorous approval processes around promotions of ...
0
votes
0
answers
190
views
Gitlab pipeline cannot do release without git
I am dealing with the issues regarding GitLab Pipelines. I have a release stage which looks like this:
release-job: # Valid release section within the job
stage: release
image: registry.gitlab....
1
vote
0
answers
194
views
Webhook notification for new app version in Apple App Store and Google Play Store?
I'm developing a mobile app and I'd like to be automatically notified when a new version is available on the Apple App Store and Google Play Store. Is there a way to register a webhook with either ...
1
vote
0
answers
150
views
Spring Boot Multi Module Maven/Gradle Single Git Repository Release Process
I am stumped on best practice for releasing software artifacts that are part of a multi-module project and part of the same git repository and branch, spring boot is a good example of what I am ...
1
vote
1
answer
708
views
How to choose and download specific release version of Azure Bicep?
In my docker image, I currently specify the download of the bicep module from GitHub as suggested in the Azure Documentation.
# Install Bicep
RUN curl -Lo bicep https://github.com/Azure/bicep/releases/...
1
vote
2
answers
8k
views
Error "was named in package.xml, but was not found in zipped directory" on salesforce deployment
anyone here experienced facing this following issue on salesforce deployment process:
An object '....' of type '.....' was named in package.xml, but was not found in zipped directory
Already looking ...
1
vote
0
answers
458
views
Why do I see divergent branches Git errors when merging code?
Exact error message:
hint: You have divergent branches and need to specify how to reconcile them.
hint: You can do so by running one of the following commands sometime before
hint: your next pull:
...
-1
votes
1
answer
143
views
How to manage a system release containing multiple packages?
What we need to do is be able to find a consistent solution to create a single package (lets call it Master package) that contains multiple packages, check that these packages are compatible with each ...
1
vote
1
answer
55
views
Need to have 2 active release branches in git-flow
We have a release branch which has already passed the testing stage and it's ready to be deployed in production.
But we are facing a big freeze period so we won't.
We also want to create a new release ...
0
votes
0
answers
110
views
Triggering a release with build completion in Azure DevOps Server not working or only happens after hours long delay
We recently migrated an existing team project to a new Azure DevOps Server and find that with our release pipelines, we are seeing that they don't trigger upon a build completion like they did prior ...
7
votes
2
answers
5k
views
Gitlab: How to generate release assets using Gitlab's CI/CD
I'm trying to use the CI/CD of gitlab to compile a c++ project and create a release but, I'm struggling to understand how to get my binaries as assets on the release page.
I manage to get an asset ...
0
votes
1
answer
1k
views
Publishing app concurrently to production and open testing in one step on Google Play console
After making a small change to my Android app (creating version 114), I wish to make this new version available to both "Production" and "Open testing". I realize that typically ...