Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
```ChangeLog
Много изменений:
- изменение 1,
- изменение 2.
```
  • Loading branch information
KirillGutyrchik committed Apr 30, 2024
1 parent a674bc4 commit a7343b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ jobs:
$index = 1
$logs = (git log --pretty=tformat:"%b" ((git tag --sort=committerdate | Select-Object -Last 2) -join "..")) -join "`n"
foreach ($match in [Regex]::Matches($logs, '```ChangeLog\n?([\w\W]*?)\n?```')) {
echo "$index. $($match.Groups[1].Value.TrimEnd(';'))." >> $env:GITHUB_OUTPUT
echo "$index. $($match.Groups[1].Value.Trim().TrimEnd(';,.'))." >> $env:GITHUB_OUTPUT
$index = $index + 1
}
echo ^D >> $env:GITHUB_OUTPUT
Expand All @@ -232,7 +232,7 @@ jobs:
body: |
**Список изменений**:
```ChangeLog
Обновление от ${{ steps.get-date.outputs.date }}. Версия надстройки - ${{ steps.assembly-version.outputs.version }}:
Обновление от ${{ steps.get-date.outputs.date }}. Версия надстройки - ${{ steps.assembly-version.outputs.version }}.
${{ steps.change-log.outputs.changelog }}
```
files: |
Expand Down

0 comments on commit a7343b8

Please sign in to comment.