forked from powershell-devops/powershell-devops
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpowershell-devops.psd1
More file actions
28 lines (27 loc) · 826 Bytes
/
powershell-devops.psd1
File metadata and controls
28 lines (27 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
@{
ModuleVersion = '1.0.1'
RootModule = 'powershell-devops.psm1'
GUID = 'c1bdd96a-5c69-43f7-8155-9cd5f5a6019d'
Author = 'https://github.com/smokedlinq'
Description = 'PowerShell module for dealing with commands in Azure DevOps Pipelines and GitHub Workflows.'
PowerShellVersion = '7.0'
FunctionsToExport = @(
'Test-AdoPipeline',
'Test-GitHubWorkflow',
'Set-EnvironmentVariable',
'Get-EnvironmentVariable',
'Enter-Group',
'Exit-Group',
'Add-Path'
)
AliasesToExport = @(
'set-env',
'get-env'
)
PrivateData = @{
PSData = @{
Tags = @('Azure', 'DevOps', 'GitHub', 'Pipelines', 'Actions', 'Workflows')
ProjectUri = 'https://github.com/smokedlinq/powershell-devops'
}
}
}