All Questions
Tagged with artifact azure-devops
27 questions
2
votes
2
answers
2k
views
Azure Devops and uploading a Python package to Artifacts using pipeline | authentication issue
I am trying to use the Azure pipeline to publish a Python package to Artifact's feed.
I could do it from my local machine and upload the package using Twine, but I have an authentication issue in the ...
0
votes
1
answer
397
views
Check/Fail Build pipeline if build pipeline artifact has already been published to artifact feed with same version number
I want to ensure that there is a warning or a failure in the build pipeline if the developer forgot to increment the version number in the packages they are developing.
Currently we have NuGet ...
1
vote
1
answer
927
views
Updated file is not showing into artifact after successful completion of build pipeline in Azure Devops
There are two updated files and they are successfully merged into the branch of repository but when i am trying to run the build pipeline , artifact is creating without any issue but the change is ...
0
votes
1
answer
112
views
Azure Devops - Can not retrieve artifact
I am publishing a artifact in a job (which completes successfully). In a separate job, I am trying to retrieve the artifact. However, nothings shows in the ls $(Build.ArtifactStagingDirectory). Why is ...
0
votes
1
answer
1k
views
Rename a published Artifact wthout the build pipeline
If I want to archive an artifact, I would like to rename the artifact without using the build pipeline.
Is there a possibility to rename the artifact
0
votes
1
answer
1k
views
Download latest artifact from Azure Devops using Powershell - get buildId
I try to download the latest Artifact from AzureDevops with PowerShell.
Here is my script to get the latest buildid:
$organisation="aaa"
$project="bbb"
$personalAccessToken="...
0
votes
1
answer
1k
views
yml pipeline: publish artifact with code from multiple repositories
I am attempting to build code from multiple repositories and publish it as a single build artifact.
When I checkout another repository it clears the ArtifactStagingDirectory.
Is there a way to save ...
2
votes
3
answers
3k
views
Download Azure Devops artifact in Python
I am able to use Azure Rest API in Python (https://github.com/microsoft/azure-devops-python-api) to get a download URL for an Artifact e.g.
artifacts = build_client.get_artifacts(project_name, ...
4
votes
1
answer
2k
views
Exclude a folder with .artifactignore
I'm building a pipeline where my staging directory looks like this:
.
└── a
├── b
│ ├── c <-- exclude everything under this
│ │ └── d
│ │ ├── big_file_1
│ │ ...
1
vote
3
answers
5k
views
Azure DevOps feed get download url for a latest version of the nuget package or symply download latest package
I've got the Azure DevOps pipeline which builds nuget package and deploys it to Azure DevOps feed. In the portal I can find download link to a specific version of the package.
How do I find url to ...
2
votes
1
answer
2k
views
Am I doing this wrong with Azure DevOps, an Artifact and YAML?
I am trying to build a web app from an artifact and pass in a variable value for the app in from a JSON file all in YAML.
The problem I have is at the end of the pipeline. I can either build the web ...
0
votes
0
answers
1k
views
Azure Devops Build Pipeline failure for Publish Artifacts
We have a Publish Artifact step in a build pipeline which has been working consistently for a long period. This last week the Publish Artifact step now fails to upload with a disk space error:
Fail ...
2
votes
1
answer
2k
views
Cannot extract artifact from azure devops
I have a problem with extracting artifacts.
I have a task to download artifact from pipeline, once done it should extract zip file but it's throwing an error : Error: Failed rmRF: Command failed: rd /...
8
votes
2
answers
7k
views
Do I have to explicitly download an artefact in an Azure DevOps pipeline?
I'm using Azure DevOps to create a pipeline that will have one stage to build and publish a Function App as an artefact, and then subsequent stages to deploy the Function App through the required life ...
2
votes
1
answer
2k
views
How to configure Azure Devops Pipeline package name for Nuget artifact
We have an existing Devops pipeline set up to use .Net Core tasks to package and push a .Net Standard class library as a Nuget artifact. We are trying to replace this with a pipeline that uses Nuget ...