Skip to content

Commit

Permalink
Update CI settings
Browse files Browse the repository at this point in the history
  • Loading branch information
lipkau committed Sep 13, 2017
1 parent 8c4fcaa commit 2730f63
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion PSIni.build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ task Deploy -If ($env:APPVEYOR_REPO_BRANCH -eq 'master' -and (-not($env:APPVEYOR
task PublishToGallery {
assert ($env:PSGalleryAPIKey) "No key for the PSGallery"

Import-Module $releasePath\PSIni.psd1 -ErrorAction Stop
Import-Module $releasePath\PSIni\PSIni.psd1 -ErrorAction Stop
Publish-Module -Name PSIni -NuGetApiKey $env:PSGalleryAPIKey
}

Expand Down
12 changes: 6 additions & 6 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ install:
- cmd: git config --global core.autocrlf true
- cmd: npm install -g markdown-spellcheck
- ps: |
Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force | Out-Null
Install-Module InvokeBuild -RequiredVersion 3.2.1 -Scope CurrentUser -Force | Out-Null
Install-Module BuildHelpers -Scope CurrentUser -Force | Out-Null
Install-Module platyPS -Scope CurrentUser -Force | Out-Null
Install-Module Pester -Scope CurrentUser -Force | Out-Null
Install-Module PSScriptAnalyzer -Scope CurrentUser -Force | Out-Null
Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force
Install-Module InvokeBuild -RequiredVersion 3.2.1 -Scope CurrentUser -Force
Install-Module BuildHelpers -Scope CurrentUser -Force
Install-Module platyPS -Scope CurrentUser -Force
Install-Module Pester -Scope CurrentUser -Force
Install-Module PSScriptAnalyzer -Scope CurrentUser -Force
$env:releasePath = "$($pwd.Path)\Release"
before_build:
Expand Down

0 comments on commit 2730f63

Please sign in to comment.