File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,12 +20,12 @@ jobs:
2020 NUGET_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
2121 - name : Set PACKAGE_VERSION to Env
2222 run : echo "PACKAGE_VERSION=${{ github.ref_name }}" >> $GITHUB_ENV
23- - run : dotnet build
23+ - run : dotnet build src/WorkflowCore/WorkflowCore.csproj
2424 - name : Create the package
25- run : dotnet pack --configuration Release /p:Version=${PACKAGE_VERSION}
26- - name : Find and publish packages
25+ run : dotnet pack src/WorkflowCore/WorkflowCore.csproj --configuration Release /p:Version=${PACKAGE_VERSION}
26+ - name : Publish package
2727 run : |
28- find . -name "*.nupkg" -type f | while read package; do
28+ find src/WorkflowCore/bin/Release -name "TigerConnect.WorkflowCore. *.nupkg" -type f | while read package; do
2929 echo "Publishing $package"
3030 dotnet nuget push "$package"
3131 done
Original file line number Diff line number Diff line change 55 <Authors >Daniel Gerlag</Authors >
66 <TargetFramework >netstandard2.0</TargetFramework >
77 <AssemblyName >WorkflowCore</AssemblyName >
8- <PackageId >WorkflowCore</PackageId >
8+ <PackageId >TigerConnect. WorkflowCore</PackageId >
99 <PackageTags >workflow;.NET;Core;state machine</PackageTags >
1010 <GenerateAssemblyConfigurationAttribute >false</GenerateAssemblyConfigurationAttribute >
1111 <GenerateAssemblyCompanyAttribute >false</GenerateAssemblyCompanyAttribute >
You can’t perform that action at this time.
0 commit comments