Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions .github/workflows/nuget-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,19 +153,19 @@
# The exe is published --self-contained, so it also bundles the .NET
# runtime (Microsoft.NETCore.App), which the PackageReference-based
# tool above does not enumerate. Credit it explicitly.
cat >> ReleaseBuilds/THIRD-PARTY-NOTICES.txt <<'EOF'

--------------------------------------------------------------------------------

.NET Runtime
Copyright (c) .NET Foundation and Contributors
https://github.com/dotnet/runtime
Licensed under the MIT License.

The self-contained distribution bundles the .NET runtime and its libraries
(Microsoft.NETCore.App). See https://github.com/dotnet/runtime/blob/main/LICENSE.TXT
for the full MIT License text.
EOF
printf '%s\n' \
'' \
'--------------------------------------------------------------------------------' \
'' \
'.NET Runtime' \
'Copyright (c) .NET Foundation and Contributors' \
'https://github.com/dotnet/runtime' \
'Licensed under the MIT License.' \
'' \
'The self-contained distribution bundles the .NET runtime and its libraries' \
'(Microsoft.NETCore.App). See https://github.com/dotnet/runtime/blob/main/LICENSE.TXT' \
'for the full MIT License text.' \
>> ReleaseBuilds/THIRD-PARTY-NOTICES.txt

echo "----- THIRD-PARTY-NOTICES.txt (head) -----"
head -n 40 ReleaseBuilds/THIRD-PARTY-NOTICES.txt
Expand All @@ -190,7 +190,7 @@
git push origin "refs/tags/${VERSION}"

- name: Create draft GitHub release (attach EXE)
uses: softprops/action-gh-release@v2

Check failure on line 193 in .github/workflows/nuget-release.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Use full commit SHA hash for this dependency.

See more on https://sonarcloud.io/project/issues?id=STARIONGROUP_uml4net&issues=AZ8UGo1by35bZZY3KCOz&open=AZ8UGo1by35bZZY3KCOz&pullRequest=191
with:
draft: true
prerelease: ${{ env.PRERELEASE }}
Expand Down
Loading