Skip to content

Commit a0a23fe

Browse files
author
Andy Hunt
committed
Corrects deployment scripts
1 parent f75d80f commit a0a23fe

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ artifacts:
2727

2828
before_deploy:
2929
- ps: >-
30-
${env:release_description} = (Get-Content "./ReleaseNotes/${env:APPVEYOR_REPO_TAG_NAME}.txt") - join "`n";
30+
${env:release_description} = (Get-Content "./ReleaseNotes/${env:APPVEYOR_REPO_TAG_NAME}.txt") -join "`n";
3131
3232
deploy:
3333
- provider: GitHub

scripts/TagRelease.ps1

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,7 @@ Write-Host "Launching editor for patch notes";
2121
notepad.exe $tagNotesPath | Out-Null;
2222

2323
Write-Host "Tagging release";
24-
git tag -a $tag -m "${tag}";
24+
git tag -a $tag -m "${tag}";
25+
26+
git add $tagNotesPath;
27+
git commit -m "${tag}";

0 commit comments

Comments
 (0)