-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating build and adding new Splatter logo (Fixes #12)
- Loading branch information
James Brundage
committed
May 8, 2023
1 parent
32310b1
commit cdf1a0e
Showing
4 changed files
with
255 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#requires -Module PSDevOps | ||
Import-BuildStep -ModuleName Splatter | ||
Push-Location ($PSScriptRoot | Split-Path) | ||
New-GitHubWorkflow -Name "Analyze, Test, Tag, and Publish" -On Push, PullRequest, Demand -Job PowerShellStaticAnalysis, | ||
TestPowerShellOnLinux, | ||
TagReleaseAndPublish, | ||
BuildSplatter -OutputPath .\.github\workflows\TestBuildAndPublish.yml | ||
Pop-Location |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
@{ | ||
"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 = 'Run HelpOut' | ||
uses = 'StartAutomating/HelpOut@master' | ||
id = 'HelpOut' | ||
} | ||
) | ||
} |
Oops, something went wrong.