2,697 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
Best practices
1
vote
1
replies
48
views
Multi repository synchronisation for deployment
For a crew project I have 2 gitlab repositories (backend and front-end) and I'd like to improve my CICD. As of now, when I merge a PR, it deploys on a ""development environment"" ...
Best practices
0
votes
0
replies
44
views
How do I manage Supabase migrations across main and develop branches using GitHub Actions?
I’m using Supabase, Next.js, and GitHub with the following setup:
A main branch for production
A develop branch for development
Two separate Supabase projects:
Project A → Production
Project B → ...
Best practices
0
votes
8
replies
112
views
How to use EV Code Signing Certificates in Azure DevOps pipelines?
need to sign .NET assemblies, VSTO add-ins, and a setup installer during CI/CD in Azure DevOps.
I have an EV Code Signing certificate, stored on a hardware token. The private key cannot be exported, ...
Advice
2
votes
0
replies
61
views
ArgoCD ApplicationSet and Workflow to create ephemeral environments from GitHub branches
How would you rate this GitOps workflow idea with ArgoCD + ApplicationSet + PreSync hooks?
In my organization we already use Argo CD for production and staging deployments. We're considering giving ...
0
votes
1
answer
68
views
DevSecOps pipeline — scans run on test branch, but devs keep pushing to dev/preprod/prod, how to ensure new code is scanned before production?
I’m an intern working in DevSecOps. Our repo uses branches: test, dev, preprod, prod. I’ve set up scans (SAST, container scan , DAST ) triggered from the test branch.
But the dev team often pushes ...
Best practices
0
votes
1
replies
53
views
Conditional Run-Time Approval at Azure DevOps
As the title says: I need a job with an approval that is only executed if a runtime variable has a specific value.
After reading the docs, it seems like this is not possible, as the approvals are ...
0
votes
0
answers
44
views
Trigger stage when file deleted or added to a directory
I want to add to my gitlab-ci a stage that is triggered based on two factors:
If a particular stage "a" was also triggered.
If a file was added or removed in a directory (not changed).
I ...
Best practices
0
votes
1
replies
77
views
Inquiry: Best Practices for Automating Superset Dashboard Deployments via CI/CD
How to automate deployment of Superset dashboards, charts, and datasets to the target environment (UAT/Prod) from Bitbucket using a CI/CD pipeline running on Cloud Build, Bitbucket Pipelines, or ...
0
votes
0
answers
62
views
Fastlane CI/CD build error: "fastlane ran into a build/archive error with your project" when using xcodebuild
I’m running a Fastlane pipeline for iOS app builds in CI/CD, and my build fails with the following log output:
INFO [2025年11月04日 18:09:06.48]:
ERROR [2025年11月04日 18:09:06.48]: Looks like fastlane ran ...
1
vote
0
answers
146
views
Should I use Docker-in-Docker or a Docker socket mount for building images inside CI containers?
I’m experimenting with a self-hosted CI/CD setup where each pipeline step runs as a Docker container. However, some steps need to build and push their own Docker images I currently use Docker-in-...
0
votes
1
answer
67
views
I’m not sure how to configure the OWASP plugin in Jenkins
In Jenkins, I'm using the OWASP plugin, but I keep getting the error: ERROR: Couldn’t find any executable in 'null'.
stage('Dependency-Check') {
steps {
dir("${...
1
vote
1
answer
57
views
Skip dev-only .env file in prod
I got an ASP.NET Core Web API project. For credentials, I created an .env file which is an embedded resource and has Copy always set (I've also tried Do not copy).
As that file contains sensitive data,...
0
votes
0
answers
52
views
Is it possible to update script section for AWS Glue ETL or Glue streaming Jobs using AWS CLI?
Version my python script for each change and push to S3 with new version
aws s3 cp aws_glue_script_v1.0.3_1.py s3://mytestcicdglue/glue-scripts/aws_glue_script_v1.0.3_1.py
I have skeleton json of ...
0
votes
1
answer
175
views
GitHub CoPilot Coding Agent Secrets Management
This question is about the GitHub CoPilot Coding Agent (not the in-IDE CoPilot) - specifically how to pass secrets to the runner - based on the docs I've tried adding the OPENAI_API_KEY both at repo ...
3
votes
1
answer
186
views
The postgres update in docker compose broke the database [closed]
I decided to just update the postgres version via docker compose pull. And now I have an error due to a lack of rights. What's wrong?
My docker-compose.yaml
services:
postgres:
env_file: .env
...