File tree Expand file tree Collapse file tree 8 files changed +9
-73
lines changed
Expand file tree Collapse file tree 8 files changed +9
-73
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
66and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
77
8+ ## [ 1.2.0] - Unreleased
9+
10+ - Reorganize project so it is compatible with GitHub Marketplace
11+
812## [ 1.1.0] - 2018-01-06
913
1014### Changed
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ LABEL "com.github.actions.icon" = "box"
1010LABEL "com.github.actions.color" = "blue"
1111
1212LABEL "name" = "github-action-psscriptanalyzer"
13- LABEL "version" = "1.1 .0"
13+ LABEL "version" = "1.2 .0"
1414LABEL "repository" = "https://github.com/devblackops/github-action-psscriptanalyzer"
1515LABEL "homepage" = "https://github.com/PowerShell/PSScriptAnalyzer"
1616LABEL "maintainer" =
"Brandon Olin <[email protected] >"
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ workflow "psscriptanalysis" {
2424action "PSScriptAnalyzer" {
2525 # Replace <latest tag> with the latest tag from
2626 # https://github.com/devblackops/github-action-psscriptanalyzer/releases
27- uses = "devblackops/github-action-psscriptanalyzer/analyze @<latest tag>"
27+ uses = "devblackops/github-action-psscriptanalyzer@<latest tag>"
2828
2929 secrets = ["GITHUB_TOKEN"]
3030
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ if ($Bootstrap.IsPresent) {
2323}
2424
2525# Execute psake task(s)
26- $psakeFile = ' ./analyze/ psakeFile.ps1'
26+ $psakeFile = ' ./psakeFile.ps1'
2727Set-BuildEnvironment - Force - WarningAction SilentlyContinue
2828if ($PSCmdlet.ParameterSetName -eq ' Help' ) {
2929 Get-PSakeScriptTasks - buildFile $psakeFile |
File renamed without changes.
Original file line number Diff line number Diff line change @@ -7,11 +7,11 @@ task Init {
77 $script :dockerAcct = ' devblackops'
88 $script :imageName = $env: BHProjectName
99 $script :dockerRepo = " $dockerAcct /$imageName "
10- $script :version = ' 1.0.1 '
10+ $script :version = ' 1.2.0 '
1111}
1212
1313task Build - depends Init {
14- " Building [$tag ]"
14+ " Building [$script :version ]"
1515 exec {
1616 docker build - t " $dockerRepo `:$version " .
1717 }
You can’t perform that action at this time.
0 commit comments