Questions tagged [azure-git-deployment]

74 questions
0
votes
0 answers

Azure Artifacts feed for public npm module

I have publish a npm module over Azure Artifacts Feed, which works fine with he generated npmrc. I understand that I can update the permission configurations to restrict the access for users too. But, I want to have a npm module which won't need any…
0
votes
0 answers

Same copy of azure pipeline with new name run fails with git error (detached head state)

I have a working azure pipeline code which looks like the code below. trigger: - none resources: repositories: - repository: 'xxx - xxx' type: git name: 'xxx - xxx' stages: - stage: xxx jobs: - deployment: xxx environment: xxx …
0
votes
1 answer

Best way to update code on Azure Linux VMSS from Git using JENKINS

I am planning to use Azure VMSS for deploying a set of spring boot apps. I am planning to create a custom linux VM image with all the required softwares/utilities as well as the required directory structure and configure this image in VMSS. We use…
0
votes
1 answer

Where are the errors located in the Azure portal GUI?

Where are the errors located in the Azure portal GUI? Abstract I'm currently developing a Flask app, deploying it on Azure. I've configured CI/CD with GitHub. Each push to the desired branch causes the thing to build. There seems, however, to be a…
0
votes
2 answers

How to connect azure synapse and an enterprise git repo using personal access token?

Im trying to link my git repo to an azure synapse sandbox and Im facing this error Failed to list GitHub repositories. Please make sure account name is correct and you have permission to perform the action. Im using a personal access token, an…
ss301
  • 514
  • 9
  • 22
0
votes
1 answer

Stored procedure is not deployed to Azure SQL server after running the pipeline

I am new to Azure DevOps. I have created a stored procedure and after merging the changes with the repository. I ran the pipeline but that stored procedure is not reflected in the database. Other functions and tables were deployed successfully, only…
0
votes
1 answer

Migration from azure git to github gives error file exceeds the limit of 100MB

I'm trying to migrate azure git repository to github. For this I'm trying to follow below steps: Cloned azure git repo on local machine Changed the origin url Now trying to push the repository to github it gives "git push file exceeds the limit of…
Abhishek
  • 583
  • 5
  • 16
0
votes
0 answers

Azure pipeline for a wordpress theme

I am currently hosting a website using an azure app service (wordpress) and I want to setup a pipeline that basically pushes a build artifact from my github repo to the themes directory and syncs it with the current one. Is this even possible? Any…
0
votes
0 answers

How to compare and deploy only one ADF pipeline from one ADF instance to other using Azure DevOps

I have already set up 2 different ADF instances i.e dev and qa. Now I do an active development in dev and have multiple pipelines (PA, PB, PC, PD.. etc), where has qa is stable and has only limited working pipelines. This initial deployment was…
0
votes
1 answer

How to approve a PR using Azure Git api

I am trying to create a PR using Git Azure API Azure git api documentation Base on the documentation as part of the request body you have a field: vote that has these values: Vote on a pull request: 10 - approved 5 - approved with suggestions 0 - no…
Zinov
  • 3,817
  • 5
  • 36
  • 70
0
votes
1 answer

Azure App Service (Linux) CI/CD build does not remove files that were deleted from repository

I'm using Azure App Service (Linux) App Service Build Service (CI/CD) to deploy a PHP application. I removed the files (package.json, eraseme.php), but those files are not deleted from /wwwroot when the site is deployed to Azure. The Azure App…
0
votes
1 answer

pull requests between two tags in git

Is there a way to get pull requests between two tags on a specific branch. Right now, I am using git log to do this. But, seems like this is bringing pull requests created before the first tag(PreviousVersion). git log --grep 'Merged PR' --oneline…
Ras
  • 543
  • 1
  • 9
  • 25
0
votes
1 answer

When getting my source in an Azure pipeline, how do I specify submodules get checked out from a specific branch?

We have an Azure pipeline in which we specify that submodules should be checked out when the "Get Sources" task is running ... We are getting our source from a particular branch (named "develop"). How do I specify that I would like the named…
Dave
  • 15,639
  • 133
  • 442
  • 830
0
votes
2 answers

Azure Devops Running Two Builds Sequentially

We have Azure Devops setup. Right now our Project will Build Twice. Once during Pull Request Checkin in the YAML file, and another due to Build Settings (picture below). This triggers two builds, and causes our build time to double. Our Devops team…
user14432516
0
votes
2 answers

Is there any way to send release pipeline data to GIT repo in devops?

Is there any task or something which will send the release pipeline data to git repo instead of sending it to any evironment?