Questions tagged [continuous-deployment]

A software engineering approach in which teams keep producing software in short cycles and ensure that the software can be released to production at any time.

Continuous Deployment (CD) is a continuous automation process where deployment of software to production systems is fully automated. This ensures that fixes and new features can be brought to production quickly.

This usually includes having a good set of automated tests to automatically verify the fitness of the software for production use.

See the article Continuous Delivery on Wikipedia for more information.

2667 questions
0
votes
0 answers

Publish github artifact on push to main without creating release

I want to build a C dynamic lib in my Github project every time I push to main branch, and make the lib permanently available to download, each tagged with the commit hash, like libfoo-d3f34839eac.so. I've tried Github packages, but that doesn't…
joel
  • 6,359
  • 2
  • 30
  • 55
0
votes
0 answers

How can we specify Jar/Libraries version from Airflow Dag code to a Databricks Job using the major/minor versions created by Azure Pipelines

We are trying to specify the jar versions to be used by the Databricks job depending on the image version created by the Azure Pipeline on a specific git branch. We want to avoid manual changes in the Airflow Dag code to specify jar versions and…
0
votes
0 answers

Properly deploying an AWS Kinesis Application

I'm trying to setup a cicd process for my kinesis applications which have been developed using apache beam running on flink. My kinesis application is setup to restore the latest snapshot and it stores an internal state. However, I noticed that…
0
votes
0 answers

Github action GAE deployment with "did not find any jar files with a Main-Class manifest entry"

We are using google app engine for deploying our server. And we are using the github action for the continuous deployment to work. Deploying it manually works and remotely the authentication step works as well, however, it says "did not find any jar…
0
votes
0 answers

Why aren't my access key and secret access key not changing for each deploy?

Im trying to create deployments for 4 different AWS account, so I created 9 enviroment variables, 2 for each AWS account, which are access key id and secret access key id, because they're all different, and the 9th is the variable that contains the…
0
votes
0 answers

getting a nginx 404 when deploying a react app

Im trying to deploy a react application onto an ubuntu server. I'm getting a 404 from nginx after I configured my project with github actions and pointed the nginx root to my projects build folder. This is my /etc/nginx/sites-available/default…
0
votes
1 answer

circleci error cut: the delimiter must be a single character

I'm looking to fetch the new version number which is created from semantic-release package for circleci. - run: | VERSION_ENV=$(cat bash.env) echo $VERSION_ENV NEXT_VERSION=$(echo $VERSION_ENV | cut -d /›/ -f2) The…
0
votes
1 answer

Using multiple runners in one gitlab-ci pipeline action

I have a repository in GitLab with two connected runners. Each runner is on a different server. Each runner has a test tag. Assuming my CICD pipeline is just one action: deploy: stage: deploy tags: - test script: - echo 'Deploying...' How…
0
votes
0 answers

Github Workflow jobs are split into two groups in Summary view

I'm trying to improve my Github actions skills, and I'm currently writing an advanced workflow (composed of smaller reusable workflows) to deploy a test app to production. As part of that, this is what I'm doing: Run CI jobs in parallel Run…
Sheharyar
  • 73,588
  • 21
  • 168
  • 215
0
votes
1 answer

Deploy Dataflow pipeline via Cloud Build using specific SA

I'm exhaustively trying to deploy a Dataflow pipeline from Cloud Build with a specific SA (rather than the default Cloud Build SA) and so far without success. I followed this process -…
0
votes
0 answers

Retain GitHub repository after Azure Data Factory pipeline deployment

The project I have an Azure Data Factory (ADF) pipeline that gets automatically deployed through an Azure DevOps CI/CD pipeline whenever some changes are detected. The problem Whenever the deployment pipeline runs, the GitHub gets disconnected from…
0
votes
0 answers

LFTP transfers file successfully in CI job but returns error

I am writing a CI task to copy our build to our deployment server, which is configured by a 3rd party to only support FTP. I've put together the following: deploy: stage: deploy only: refs: - master script: - apk add lftp …
otoomey
  • 939
  • 1
  • 14
  • 31
0
votes
0 answers

Retrieve API Gateway deployment endpoints to use them in frontend app

I deploy my service in AWS by using The Serverless Framework. In my serverless.yml file I have defined 4 lambda functions so, 4 endpoints will be created once the deployment is finished. I want to inject these endpoints into my frontend code somehow…
0
votes
0 answers

How to use environment wise appsettings.json in GitHub action for dockerized lambda application?

I've a lambda application written in .NET core. I want to deploy it as a container through GitHub actions. During CI step, I want to build a common image and upload it into ECR then later during CD, I want to substitute secrets as per various…
0
votes
0 answers

Container Images promotion to Helm Chart or Environment

My product deliverables are Helm charts and Container Images. Each component has its own GIT repository. A feature or fix could impact one or multiple components. Helm Charts are published in OCI Registries and consumed form there. I plan to promote…
1 2 3
99
100