Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
35 views

I want to run my GitHub Actions Workflow only after another has finished and if the push was a tag. Currently I have following logic: name: Production Deployment on: workflow_run: workflows: [&...
Anes's user avatar
  • 350
Best practices
0 votes
8 replies
78 views

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, ...
jeanie77's user avatar
  • 546
Advice
2 votes
0 replies
43 views

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 ...
luacassus's user avatar
  • 6,750
0 votes
0 answers
56 views

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 ...
asmr gig's user avatar
Best practices
0 votes
1 replies
44 views

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 ...
tpschmidt's user avatar
  • 2,747
0 votes
0 answers
41 views

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 ...
Remchuk's user avatar
Best practices
0 votes
1 replies
62 views

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 ...
Manish Kumar Pandey's user avatar
0 votes
0 answers
39 views

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 ...
Somnath Sabale's user avatar
0 votes
0 answers
105 views

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-...
Alex's user avatar
  • 91
0 votes
1 answer
58 views

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("${...
AccorDi's user avatar
1 vote
1 answer
56 views

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,...
bankangle's user avatar
  • 129
0 votes
0 answers
51 views

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 ...
aparnagottumukkala's user avatar
0 votes
1 answer
142 views

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 ...
shanlodh's user avatar
  • 1,055
3 votes
1 answer
163 views

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 ...
KevinDev64's user avatar
0 votes
0 answers
33 views

I'm currently building a CI/CD pipeline in GitLab, and I'm running into trouble with integrating a code coverage check. What I’ve Got So Far: A working GitLab Runner (on Windows). An Apex class and a ...
Moritz 's user avatar
1 vote
1 answer
34 views

I have a gitlab CI pipeline defined in .gitlab-ci.yml. One job is to deploy and start a spring boot application to 2 different machines. I do it by invoking a bash script twice with different machine ...
xing's user avatar
  • 504
0 votes
1 answer
66 views

I am troubleshooting a problem with connection between Github and Jenkins, but it looks like the Github webhook deliveries list is completely empty despite having multiple branches with push happening....
Patlatus's user avatar
  • 1,669
0 votes
1 answer
96 views

My flutter project contains 4 or 5 packages from my own git and I do alter the code in packages too. I need to create a workspace to read the project from my local but only when I'm developing. I don'...
NIMA Shahahmadian's user avatar
0 votes
0 answers
42 views

my current azure dvops setup running Version Azure DevOps Server 2020 Update 1.2 we depend on manual approval in most of pipeline like the below task, below is the yaml we currently use task: ...
moshahen's user avatar
2 votes
0 answers
49 views

I am trying to use Fastlane in order to publish the app. In my pipeline script, I’m doing the following steps: security unlock-keychain -p "$KEYCHAIN_PASSWORD" ~/Library/Keychains/login....
raminmasumov's user avatar
0 votes
0 answers
71 views

Problem Summary: I'm trying to deploy a Flutter web application using GitHub Actions, but flutter pub get fails when trying to access private GitHub repositories as git dependencies. The error occurs ...
Yawar Othman's user avatar
0 votes
1 answer
36 views

I have app service which hold > 10 web jobs. So far using Invoke-RestMethod -Uri $kuduApiUrl -Headers $zipHeaders -Method PUT -InFile $zipPackageFile Apparently it is deprecated. So now we tried: ...
srishti purohit's user avatar
-3 votes
1 answer
161 views

I am updating an existing pipeline on GitLab that creates an automatic cascade on GitLab. When a merge request is merged, the pipeline is triggered to perform an automatic commit to a lower branch (if ...
Oupat's user avatar
  • 131
0 votes
0 answers
46 views

I'm looking at SQL Mesh bot in Github and seems to be following the Atlantis approach used in Terraform but brought into data modelling: https://sqlmesh.readthedocs.io/en/stable/integrations/github/ ...
Vzzarr's user avatar
  • 5,892
0 votes
0 answers
82 views

There are answers such as Run pipeline on gitlab when branch is deleted and even documentation on GitLab's site like https://docs.gitlab.com/ci/environments/#stopping-an-environment that make some ...
Wayne Werner's user avatar
  • 52.3k
0 votes
0 answers
44 views

For our deployments to Azure app services we like to use the solidify tokenization task, whilst it has worked for a long time, we still have 2 issues with it: only runs on windows agents the task ...
YaMoef's user avatar
  • 31
2 votes
1 answer
316 views

I'm trying to set up automatic CI/CD deployment of my frontend via GitHub Actions using SSH to connect to a Hetzner cloud VM (Shared vCPU). Everything works except for one issue related to the ...
coder's user avatar
  • 715
0 votes
0 answers
70 views

We have an Azure DevOps server 2022.1, and I am trying to call the endpoint _apis/projectanalysis/languagemetrics to understand the main language used in a given repository (I learnt about it here: ...
Pampa Nello's user avatar
0 votes
0 answers
53 views

CodeDeploy giving error No such file or directory @ rb_sysopen - C:\ProgramData/Amazon/CodeDeploy/a5e44c96-0925-4071-806d-72adee9955c7/d-KTEDSL9LD/deployment-archive/dev-glf-orbis-store-build\packages\...
Rehan CH's user avatar
  • 171
1 vote
0 answers
64 views

SOLVED: The issue was a difference in temp directories in the environment. The build was using the temp directories set in buildAgent.properties and the terminal was using the default /tmp directory. ...
Joe Vogel's user avatar
1 vote
2 answers
51 views

I’m facing an issue with my GitHub Actions CI/CD setup for deploying a web app to Firebase Hosting. I’ve set up three workflows: Pull Request Workflow: Validates code on PR creation. Build Workflow: ...
Tabrez Dal's user avatar
0 votes
0 answers
43 views

trigger.yml: name: Trigger workflow on: push: branches: - '**' jobs: parse_and_call: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 ...
Hypnoc's user avatar
  • 1
0 votes
1 answer
87 views

I'm attempting to work on .NET Framework 4.7.2 website project without a .csproj or similar project file. When attempting to publish using command: msbuild ./<website-folder-name> /t:Publish /p:...
CloudCoderX's user avatar
-1 votes
2 answers
231 views

I am working on Azure Devops pipeline where I have multiple stages. The customer wants me to put an approval stage before the final deployment stage; and this approval should be asked every time the ...
Deepak D's user avatar
-2 votes
1 answer
123 views

I'm a beginner web developer trying to learn about CI/CD and deployment automation. I built a simple full-stack web application and deployed it using only AWS EC2 (Free Tier). Here's how I set up my ...
Jungpago's user avatar
1 vote
1 answer
399 views

First of all, whenever I archive and upload to the App Store, it's working perfectly. No error, no warning. Just works. But whenever I try to use Xcode Cloud with a standard workflow. I'm getting this ...
Jalil's user avatar
  • 1,276
0 votes
0 answers
89 views

I have a Jenkins pipeline that has been working fine for several years. But I hadn't run jenkins in a while, and after 6 months I ran it again and it failed at the git clone stage. build results ...
777's user avatar
  • 1
0 votes
0 answers
116 views

I am deploying a web with Flux, GitHub Actions, DockerHub, and Kubernetes. Here is the flowchart. The method I am using currently to update the web is to automate deleting the old pod with GitHub ...
Tyven Christopher's user avatar
0 votes
1 answer
266 views

For context: I am currently tasked with creating a pipeline that tests the application for my work. The application is coded in C# and uses a local database instance of a SQL Server. Part of our ...
MaxH's user avatar
  • 75
0 votes
1 answer
80 views

I've found a lot of instances in a pipeline I have to work with where either intentionally or not, steps in the same job as one defining a non-output task variable use said variable as an environment ...
Larry's user avatar
  • 489
1 vote
0 answers
64 views

I have a gitlab components file, and would like to add the possibility that before_script can be enhanced by the projects that use the component. In the following example, I would want to offer other ...
membersound's user avatar
  • 87.9k
-1 votes
1 answer
97 views

I have a .NET and Angular application (both in a single solution) deployed across two different Azure Web App Services. I need to assign development (dev) and production (prod) environments properly. ...
Sheraz's user avatar
  • 1
0 votes
1 answer
255 views

I have a script executed as bicep DeploymentScript in Azure DevOps. It executes Azure SQL Server commands and has worked up until the breaking changes made by Microsoft 5th June this year. TLDR: The ...
Aiden Dipple's user avatar
0 votes
1 answer
197 views

Hello, I am updating a GitLab CI/CD pipeline to add a new job. Unfortunately, when I commit and the pipeline run, I got this error message: jobs:run-tests config contains unknown keys: id_tokens, ...
Oupat's user avatar
  • 131
2 votes
2 answers
46 views

Here is my gitlab-ci-yml file: variables: # The path this file is in SUBDIR: 'fasd/05_FASD_EX/interrupts/fasd' stages: - deploy-test deploy-test: stage: deploy-test image: name: amazon/...
Rooster242's user avatar
  • 1,005
1 vote
1 answer
82 views

I'm using Jenkins to build on Mac M1, Mac Intel, and Linux test machines. In my build.sh script, I need to clone a private Git repository. On Linux, I successfully used libsecret to store credentials, ...
Vasanth's user avatar
  • 11
0 votes
0 answers
127 views

Pretty new to ArgoCD. I am trying to use ApplicationSet iVersion: argoproj.io/v1alpha1 kind: ApplicationSet metadata: name: xxx-pull-preview-test spec: generators: - pullRequest: ...
Jatin Mehrotra's user avatar
1 vote
0 answers
38 views

How can I increment label? I.e X.X.X-labelname.Y (increment the y number) every time a change is made to main branch My GitVersion.yaml I currently have next-version: X.X.X main: mode: Continuous ...
Alex's user avatar
  • 11
1 vote
2 answers
104 views

I have a requirement to give access to an external supplier and I would like to give them access to only a View with some pipelines inside. I don’t want them seeing all my pipelines created on Jenkins....
Aldo Inácio da Silva's user avatar
1 vote
1 answer
169 views

I'm building a Python wheel using Poetry inside an Azure DevOps pipeline. My pyproject.toml contains version constraints like: [tool.poetry.dependencies] pandas = ">=1.4.0" In the ...
yashaswi k's user avatar

1
2 3 4 5
55