Skip to content

Commit eb4bd21

Browse files
committed
Reorganize project so it is compatible with GitHub Marketplace
1 parent fb1fdf3 commit eb4bd21

File tree

8 files changed

+9
-73
lines changed

8 files changed

+9
-73
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and 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

analyze/Dockerfile renamed to Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ LABEL "com.github.actions.icon" = "box"
1010
LABEL "com.github.actions.color" = "blue"
1111

1212
LABEL "name" = "github-action-psscriptanalyzer"
13-
LABEL "version" = "1.1.0"
13+
LABEL "version" = "1.2.0"
1414
LABEL "repository" = "https://github.com/devblackops/github-action-psscriptanalyzer"
1515
LABEL "homepage" = "https://github.com/PowerShell/PSScriptAnalyzer"
1616
LABEL "maintainer" = "Brandon Olin <[email protected]>"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ workflow "psscriptanalysis" {
2424
action "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

analyze/LICENSE

Lines changed: 0 additions & 21 deletions
This file was deleted.

analyze/README.md

Lines changed: 0 additions & 47 deletions
This file was deleted.

build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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'
2727
Set-BuildEnvironment -Force -WarningAction SilentlyContinue
2828
if ($PSCmdlet.ParameterSetName -eq 'Help') {
2929
Get-PSakeScriptTasks -buildFile $psakeFile |
File renamed without changes.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

1313
task Build -depends Init {
14-
"Building [$tag]"
14+
"Building [$script:version]"
1515
exec {
1616
docker build -t "$dockerRepo`:$version" .
1717
}

0 commit comments

Comments
 (0)