Implement azure artifact downloader
This commit is contained in:
commit
a9e7737024
5 changed files with 101 additions and 0 deletions
25
README.md
Normal file
25
README.md
Normal file
|
@ -0,0 +1,25 @@
|
|||
# Azure DevOps artifacts downloader
|
||||
|
||||
# Getting Started
|
||||
|
||||
## Requierements
|
||||
|
||||
- Powershell > 5
|
||||
|
||||
|
||||
## Configure
|
||||
|
||||
Edit `main.ps1` and replace all 4 first variables to contains the information
|
||||
of your repository
|
||||
|
||||
```ps1
|
||||
$token = 'ZW5ndXllbjpnN25h...' # replace this
|
||||
$instance = 'dev.azure.com/myorganization' # replace this
|
||||
$project = 'myproject' # replace this
|
||||
$branches = 'V1.0.0.0', 'V1.0.0.1' # replace this
|
||||
$outDir = "$PSScriptRoot\output" # optionnally replace the output path
|
||||
```
|
||||
|
||||
# Execute
|
||||
|
||||
Open a powershell terminal and run the `main.ps1`
|
Loading…
Add table
Add a link
Reference in a new issue