Forum Discussion
bharathsimha
Oct 19, 2022Copper Contributor
JFrog Artifacts move to azure artifacts
Hi, we are using salesforce environment deploying through Azure Devops, storing the artifacts in JFrog Artifactory but we are planning to move azure artifacts, I am able to be publishing the azure ar...
Unaihuete
Microsoft
Oct 25, 2022Hello bharathsimha ,
I think you may be mixing concepts, which happens quite frequently:
- Azure pipeline artifacts: is used for retaining files you create/modify during pipeline execution. For example, CI pipeline created a compiled website and publishes as artifacts, then CD pipeline downloads it to deploy to desired target. I think you are using this one, as it has a drop folder default option.
- Azure Artifacts: the package feed service in Azure DevOps. The pushing to feed operation depend on the packaging technology, here you have an example for nuget: https://learn.microsoft.com/en-us/azure/devops/pipelines/artifacts/nuget?toc=%2Fazure%2Fdevops%2Fartifacts%2Ftoc.json&bc=%2Fazure%2Fdevops%2Fartifacts%2Fbreadcrumb%2Ftoc.json&view=azure-devops&tabs=yaml#publish-a-package For any kind of package this one can be used https://learn.microsoft.com/en-us/azure/devops/pipelines/artifacts/universal-packages?toc=%2Fazure%2Fdevops%2Fartifacts%2Ftoc.json&bc=%2Fazure%2Fdevops%2Fartifacts%2Fbreadcrumb%2Ftoc.json&view=azure-devops&tabs=yaml#publish-a-universal-package
- bharathsimhaOct 25, 2022Copper Contributor
Should we need azure artifacts feeds. azure pipeline artifacts storing drop folder if i am new pipeline it is overwrite the drop folder,is there any way to store the drop folder
- bharathsimhaOct 25, 2022Copper Contributor
bharathsimha when i am installing universal package i am getting the error
- UnaihueteOct 25, 2022
Microsoft
- pipeline artifacts do not get overwritten --> every pipeline execution keeps files from that execution (drop folder or any other custom folder) https://learn.microsoft.com/en-us/azure/devops/pipelines/publish-pipeline-artifact?view=azure-devops&tabs=yaml
- for artifact feeds (universal packages) https://learn.microsoft.com/en-us/azure/devops/pipelines/artifacts/universal-packages?view=azure-devops&tabs=yaml what error do you get?