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
- Host: GitHub
- URL: https://github.com/tomasbouda/poshpipeline
- Owner: TomasBouda
- License: mit
- Created: 2019-10-14T13:37:54.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-09-22T17:30:11.000Z (over 3 years ago)
- Last Synced: 2025-02-04T13:41:23.082Z (about 1 year ago)
- Topics: azure, devops, pipeline, powershell
- Language: PowerShell
- Homepage:
- Size: 16.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PoShPipeline [](https://www.powershellgallery.com/packages/PoShPipeline/) [](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
...
```