Skip to content

Commit

Permalink
Checkout
Browse files Browse the repository at this point in the history
```ChangeLog
Checkout
```
  • Loading branch information
KirillGutyrchik committed Apr 29, 2024
1 parent 6383b92 commit 917215d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,12 +200,16 @@ jobs:
$version=[System.Reflection.Assembly]::LoadFrom("./EPLAN.EplAddin.EasyEPlanner.dll").GetName().Version.ToString()
echo "version=$version" >> $env:GITHUB_OUTPUT
- uses: actions/checkout@v3
with:
submodules: 'recursive'
fetch-depth: 0

- name: Generate ChangeLog
id: change-log
shell: powershell
run: |
echo $(ls -Force)
git init
$i = 1
foreach ($match in [Regex]::Matches($(git log $((git tag --sort=committerdate | Select-Object -Last 2) -join "..")), '```ChangeLog\n([\w\W]+)\n```')) {
echo "$($i). $($match.Groups[1].Value);"
Expand Down

0 comments on commit 917215d

Please sign in to comment.