Loading...
Loading...
Manage Azure Artifacts including package feeds, versions, and dependencies. Use when publishing or managing artifact packages.
npx skill4agent add ntaksh42/agents azure-artifacts-manager# npm Feed作成
az artifacts feed create \
--name "my-npm-feed" \
--feed-type npm
# NuGet Feed
az artifacts feed create \
--name "my-nuget-feed" \
--feed-type nuget
# Universal Packages
az artifacts feed create \
--name "my-universal-feed" \
--feed-type universalsteps:
- task: Npm@1
inputs:
command: 'publish'
publishRegistry: 'useFeed'
publishFeed: 'my-npm-feed'steps:
- task: NuGetCommand@2
inputs:
command: 'push'
packagesToPush: '$(Build.ArtifactStagingDirectory)/**/*.nupkg'
nuGetFeedType: 'internal'
publishVstsFeed: 'my-nuget-feed'az artifacts universal publish \
--organization https://dev.azure.com/myorg \
--feed my-universal-feed \
--name my-package \
--version 1.0.0 \
--path ./distregistry=https://pkgs.dev.azure.com/myorg/_packaging/my-npm-feed/npm/registry/
always-auth=true