Skip to content

Commit 1da40ce

Browse files
author
James Brundage
committed
Updating workflow (building with PipeScript (#54))
1 parent fd2854d commit 1da40ce

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/TestAndPublish.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -485,6 +485,14 @@ jobs:
485485
}
486486
}
487487
} @Parameters
488+
BuildPipeScript:
489+
runs-on: ubuntu-latest
490+
if: ${{ success() }}
491+
steps:
492+
- name: Check out repository
493+
uses: actions/checkout@v2
494+
- name: BuildPipeScript
495+
uses: StartAutomating/PipeScript@main
488496
HelpOut:
489497
runs-on: ubuntu-latest
490498
if: ${{ success() }}

PipeScript.GitHubWorkflow.PSDevOps.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#requires -Module PSDevOps
2-
New-GitHubWorkflow -Name "Analyze, Test, Tag, and Publish" -On Push, PullRequest, Demand -Job PowerShellStaticAnalysis, TestPowerShellOnLinux, TagReleaseAndPublish, HelpOut, RunEZOut -Environment @{
2+
New-GitHubWorkflow -Name "Analyze, Test, Tag, and Publish" -On Push, PullRequest, Demand -Job PowerShellStaticAnalysis, TestPowerShellOnLinux, TagReleaseAndPublish, BuildPipeScript, HelpOut, RunEZOut -Environment @{
33
NoCoverage = $true
44
}|
55
Set-Content .\.github\workflows\TestAndPublish.yml -Encoding UTF8 -PassThru

0 commit comments

Comments
 (0)