We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f75d80f commit a0a23feCopy full SHA for a0a23fe
2 files changed
appveyor.yml
@@ -27,7 +27,7 @@ artifacts:
27
28
before_deploy:
29
- ps: >-
30
- ${env:release_description} = (Get-Content "./ReleaseNotes/${env:APPVEYOR_REPO_TAG_NAME}.txt") - join "`n";
+ ${env:release_description} = (Get-Content "./ReleaseNotes/${env:APPVEYOR_REPO_TAG_NAME}.txt") -join "`n";
31
32
deploy:
33
- provider: GitHub
scripts/TagRelease.ps1
@@ -21,4 +21,7 @@ Write-Host "Launching editor for patch notes";
21
notepad.exe $tagNotesPath | Out-Null;
22
23
Write-Host "Tagging release";
24
-git tag -a $tag -m "${tag}";
+git tag -a $tag -m "${tag}";
25
+
26
+git add $tagNotesPath;
+git commit -m "${tag}";
0 commit comments