Skip to content

Commit

Permalink
Fixed pack issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrei15193 committed Jun 1, 2023
1 parent f2ae5e5 commit 4d3d527
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
run: dotnet restore

- name: Trim readme.md
if: github.event_name == 'release'
shell: pwsh
run: |
(Get-Content .\readme.md | Select-Object -Skip 2) | Out-File readme.md
Expand Down Expand Up @@ -87,7 +88,7 @@ jobs:
run: |
[string] $releaseNotes = (@"
${{ github.event.release.body }}
"@ -split '# Release Notes', 2 | Select-Object -Last 1).Trim()
"@ -split '# Release Notes', 2 | Select-Object -Last 1).Trim() -replace ',', '%2c'
dotnet pack `
--configuration Release `
Expand Down
1 change: 1 addition & 0 deletions CodeMap/CodeMap.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<PackageIcon>logo.png</PackageIcon>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/Andrei15193/CodeMap.git</RepositoryUrl>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<PackageReleaseNotes>* Added code documentation models and visitors.</PackageReleaseNotes>
<PackageTags>code documentation browser</PackageTags>
</PropertyGroup>
Expand Down

0 comments on commit 4d3d527

Please sign in to comment.