We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff9ad30 commit aba100eCopy full SHA for aba100e
Shell/Release.psm1
@@ -25,6 +25,11 @@ function CSH-Release {
25
26
Set-Content -Encoding UTF8 -Path $changeLogPath -Value ($changeLog + $changeLogValue)
27
28
+ $bugFilePath = $PSScriptRoot + "/../.github/ISSUE_TEMPLATE/bug.yml"
29
+ $replacementText = "- [ ] I'm using the latest version of CSharpier ``$versionNumber``"
30
+ (Get-Content $bugFilePath) -replace '- \[ \] I''m using the latest version of CSharpier `\d+(\.\d+)*`', $replacementText |
31
+ Set-Content -Encoding UTF8 $bugFilePath
32
+
33
foreach ($file in Get-ChildItem ($PSScriptRoot + "/../docs") -Filter "*.md")
34
{
35
Copy-Item $file.FullName ($PSScriptRoot + "/../Src/Website/docs/" + $file.Name)
0 commit comments