Skip to content

Commit

Permalink
Include codegen projects in release (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonkjenn authored Oct 9, 2024
1 parent 0bcf93d commit 29fe1b2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: dotnet restore "./src/Vipps.net/Vipps.net.csproj"
# Create Nuget package.
- name: Pack Nuget
run: dotnet pack "./src/Vipps.net/Vipps.net.csproj" --include-source --output out --configuration Release --no-restore
run: dotnet pack "./src/Vipps.net/Vipps.net.csproj" --include-source --include-referenced-projects --output out --configuration Release --no-restore
# Setup necessary info to create tag
- name: Set tag variable with v, for use in tag and release based on packed Nuget
run: "echo \"RELEASE_TAG=v$(find ./out -maxdepth 1 -name Vipps.net.*.nupkg | grep -oP '((\\d+)\\.(\\d+)\\.(\\d+)(.*?))')\" >> $GITHUB_ENV"
Expand Down
8 changes: 4 additions & 4 deletions src/Vipps.net/Vipps.net.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Product>Vipps.net</Product>
<Description>Vipps.net SDK</Description>
<PackageId>Vipps.net</PackageId>
<Version>1.0.1</Version>
<Version>1.0.2</Version>
<Authors>Vipps Mobilepay AS</Authors>
<Company>Vipps Mobilepay AS</Company>
<Title>Vipps SDK .Net</Title>
Expand Down Expand Up @@ -35,13 +35,13 @@
<None Include="..\.editorconfig" Link=".editorconfig" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.32" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.2" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Polly.Extensions.Http" Version="3.0.0" />
<PackageReference Include="Polly.Contrib.WaitAndRetry" Version="1.1.1" />
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.1.1" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.1.2" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Vipps.net.Models.Checkout\Vipps.net.Models.Checkout.csproj" />
Expand Down

0 comments on commit 29fe1b2

Please sign in to comment.