Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/release-assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
zip -d standalone-windows-64.zip "version-*"
zip -ur standalone-windows-64.zip version-${{ steps.set_version.outputs.tag-no-v }}
- name: Create nuget package
run: dotnet pack -v normal -c Release --include-symbols --include-source -p:PackageVersion=${{ steps.set_version.outputs.tag-no-v }} --output nupkgs
run: dotnet pack -v normal -c Release --include-symbols --include-source -p:PackageVersion=${{ steps.set_version.outputs.tag-no-v }} -p:Version=${{ steps.set_version.outputs.tag-no-v }} -p:AssemblyVersion=${{ steps.set_version.outputs.tag-no-v }} -p:FileVersion=${{ steps.set_version.outputs.tag-no-v }} --output nupkgs
working-directory: ./src/Weasyprint.Wrapped
- name: Add github source
run: dotnet nuget add source --username bert@hertogen.net --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/berthertogen/index.json"
Expand Down
2 changes: 2 additions & 0 deletions src/Weasyprint.Wrapped/Weasyprint.Wrapped.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
<Nullable>enable</Nullable>
<PackageId>Weasyprint.Wrapped</PackageId>
<Version>0.0.1</Version>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version)</FileVersion>
<Authors>Bert Hertogen</Authors>
<Company>Software Solutions Hertogen</Company>
<RepositoryUrl>https://github.com/berthertogen/weasyprint.wrapped</RepositoryUrl>
Expand Down
Loading