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
8 changes: 4 additions & 4 deletions .github/workflows/release-nuget-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
NUGET_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Set PACKAGE_VERSION to Env
run: echo "PACKAGE_VERSION=${{ github.ref_name }}" >> $GITHUB_ENV
- run: dotnet build
- run: dotnet build src/WorkflowCore/WorkflowCore.csproj
- name: Create the package
run: dotnet pack --configuration Release /p:Version=${PACKAGE_VERSION}
- name: Find and publish packages
run: dotnet pack src/WorkflowCore/WorkflowCore.csproj --configuration Release /p:Version=${PACKAGE_VERSION}
- name: Publish package
run: |
find . -name "*.nupkg" -type f | while read package; do
find src/WorkflowCore/bin/Release -name "TigerConnect.WorkflowCore.*.nupkg" -type f | while read package; do
echo "Publishing $package"
dotnet nuget push "$package"
done
2 changes: 1 addition & 1 deletion src/WorkflowCore/WorkflowCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Authors>Daniel Gerlag</Authors>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>WorkflowCore</AssemblyName>
<PackageId>WorkflowCore</PackageId>
<PackageId>TigerConnect.WorkflowCore</PackageId>
<PackageTags>workflow;.NET;Core;state machine</PackageTags>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
Expand Down
Loading