-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathBuildOBSPowerShell.psd1
More file actions
43 lines (43 loc) · 1.01 KB
/
BuildOBSPowerShell.psd1
File metadata and controls
43 lines (43 loc) · 1.01 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
@{
"runs-on" = "ubuntu-latest"
if = '${{ success() }}'
steps = @(
@{
name = 'Check out repository'
uses = 'actions/checkout@v2'
},
@{
name = 'GitLogger'
uses = 'GitLogging/GitLoggerAction@main'
id = 'GitLogger'
},
@{
name = 'Use PSSVG Action'
uses = 'StartAutomating/PSSVG@main'
id = 'PSSVG'
},
'RunPipeScript',
'RunEZOut',
@{
name = 'Use GitPub Action'
uses = 'StartAutomating/GitPub@main'
id = 'GitPub'
with = @{
PublishParameters = @'
{
"Get-GitPubIssue": {
"Repository": '${{github.repository}}'
},
"Get-GitPubRelease": {
"Repository": '${{github.repository}}'
},
"Publish-GitPubJekyll": {
"OutputPath": "docs/_posts"
}
}
'@
}
}
'RunHelpOut'
)
}