An open API service indexing awesome lists of open source software.

https://github.com/tomasbouda/poshpipeline

Collection of scripts usefull in Azure Pipelines
https://github.com/tomasbouda/poshpipeline

azure devops pipeline powershell

Last synced: 10 months ago
JSON representation

Collection of scripts usefull in Azure Pipelines

Awesome Lists containing this project

README

          

# PoShPipeline [![psgallery](https://img.shields.io/powershellgallery/v/PoShPipeline.svg)](https://www.powershellgallery.com/packages/PoShPipeline/) [![psgallery](https://img.shields.io/powershellgallery/dt/PoShPipeline.svg)](https://www.powershellgallery.com/packages/PoShPipeline/)

Collection of scripts I use in Azure Pipelines

## Usage

azure-pipelines.yml
```yml
...

- task: PowerShell@2
inputs:
targetType: 'inline'
script: |
Install-PackageProvider -Name NuGet -Force -Scope CurrentUser
Install-Module -Name PoShPipeline -Force -Verbose -Scope CurrentUser
Import-Module -Name PoShPipeline

...
```