Skip to content

Commit

Permalink
fix(ci): configure to also publish utilities
Browse files Browse the repository at this point in the history
  • Loading branch information
ProbablePrime committed Dec 17, 2023
1 parent 6f58e39 commit 709c30c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
uses: actions/setup-dotnet@v3
with:
dotnet-version: '2.0'
- name: Build
run: dotnet build BepuPhysics --configuration ReleaseStrip -p:Version=${{ env.VERSION }}
- name: Pack
- name: Build & Pack BEPU Physics
run: dotnet pack BepuPhysics --output nupkgs --configuration ReleaseStrip -p:Version=${{ env.VERSION }}
- name: Build & Pack BEPU Utilities
run: dotnet pack BepuUtilities --output nupkgs --configuration ReleaseStrip -p:Version=${{ env.VERSION }}
- name: Nuget Publish
run: dotnet nuget push nupkgs\*.nupkg -k ${{ secrets.NUGET_TOKEN }} -s https://api.nuget.org/v3/index.json
9 changes: 5 additions & 4 deletions BepuUtilities/BepuUtilities.csproj
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>YellowDogMan.BepuUtilities</PackageId>
<AssemblyName>BepuUtilities</AssemblyName>
<RootNamespace>BepuUtilities</RootNamespace>
<TargetFramework>netstandard2.0</TargetFramework>
<Version>2.4.0.2-frooxengine</Version>
<Company>Bepu Entertainment LLC</Company>
<Authors>Ross Nordby</Authors>
<Description>Supporting utilities library for BEPUphysics v2.</Description>
<Authors>Ross Nordby, Yellow Dog Man Studios s.r.o.</Authors>
<Description>Fork of Supporting utilities library for BEPUphysics v2.</Description>
<Copyright>© Bepu Entertainment LLC</Copyright>
<PackageProjectUrl>https://github.com/bepu/bepuphysics2</PackageProjectUrl>
<PackageProjectUrl>https://github.com/Yellow-Dog-Man/bepuphysics2</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<RepositoryUrl>https://github.com/bepu/bepuphysics2</RepositoryUrl>
<RepositoryUrl>https://github.com/Yellow-Dog-Man/bepuphysics2</RepositoryUrl>
<PackageIcon>bepuphysicslogo256.png</PackageIcon>
<Configurations>Debug;Release;ReleaseStrip</Configurations>
<LangVersion>latest</LangVersion>
Expand Down

0 comments on commit 709c30c

Please sign in to comment.