-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add azure private nuget registry documentation
- Loading branch information
1 parent
52060ea
commit f55125f
Showing
3 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
examples/templates/Azure/azure-pipelines-private-nuget-repository.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
jobs: | ||
- job: debricked_scan | ||
displayName: Debricked scan | ||
pool: | ||
vmImage: 'ubuntu-latest' | ||
steps: | ||
- task: NuGetAuthenticate@1 | ||
displayName: NuGet Authentication | ||
- script: | | ||
curl -LsS https://github.com/debricked/cli/releases/download/release-v2/cli_linux_x86_64.tar.gz | tar -xz debricked | ||
./debricked scan | ||
displayName: Debricked scan | ||
env: | ||
DEBRICKED_TOKEN: $(DEBRICKED_TOKEN) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters