Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions commit-assemblyinfo-changes.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ else

'Updated assembly info...' | Write-Host -ForegroundColor White -NoNewline
'OK' | Write-Host -ForegroundColor Green
}

# update assembly info in nf-interpreter if this is tag
if ($env:APPVEYOR_REPO_TAG -eq "true")
{
'Updating assembly version in nf-interpreter...' | Write-Host -ForegroundColor White -NoNewline

# clone nf-interpreter repo (only a shallow clone with last commit)
git clone https://github.com/nanoframework/nf-interpreter -b develop --depth 1 -q
Expand Down
2 changes: 1 addition & 1 deletion generate-change-log.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright (c) 2018 The nanoFramework project contributors
# See LICENSE file in the project root for full license information.

# generate change log when build is NOT for a pull-request
# skip generating the change log when build is a pull-request or not a tag (can't commit when repo is in a tag)
if ($env:appveyor_pull_request_number -or $env:APPVEYOR_REPO_TAG -eq "true")
{
'Skip change log processing...' | Write-Host -ForegroundColor White
Expand Down
2 changes: 1 addition & 1 deletion update-dependencies.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# only need to update dependencies when build is a tag
if ($env:appveyor_pull_request_number -or $env:APPVEYOR_REPO_TAG -eq "false")
{
'Skip updating dependencies as this is not a tag build...' | Write-Host -ForegroundColor White
'Skip updating dependencies...' | Write-Host -ForegroundColor White
}
else
{
Expand Down