Skip to content

Commit 2472fc0

Browse files
authored
Update release-nuget-package.yml (#5)
1 parent 430eb58 commit 2472fc0

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/release-nuget-package.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

src/WorkflowCore/WorkflowCore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
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>

0 commit comments

Comments
 (0)