Skip to content

Commit 084ea0a

Browse files
committed
generic bot removed from publish
1 parent ac9c5ee commit 084ea0a

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/nuget-publish.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,14 @@ jobs:
3333
VERSION="1.0.${{ github.run_number }}"
3434
echo "PACKAGE_VERSION=$VERSION" >> "$GITHUB_ENV"
3535
36-
- name: Pack
37-
run: dotnet pack Disc.NET.sln --configuration Release --no-restore --output ./artifacts -p:Version=${{ env.PACKAGE_VERSION }}
36+
- name: Pack Disc.NET.Client.SDK
37+
run: dotnet pack ./Disc.NET.Client.SDK/Disc.NET.Client.SDK.csproj --configuration Release --no-restore --output ./artifacts -p:Version=${{ env.PACKAGE_VERSION }}
38+
39+
- name: Pack Disc.NET.Commands
40+
run: dotnet pack ./Disc.NET.Commands/Disc.NET.Commands.csproj --configuration Release --no-restore --output ./artifacts -p:Version=${{ env.PACKAGE_VERSION }}
41+
42+
- name: Pack Disc.NET
43+
run: dotnet pack ./Disc.NET/Disc.NET.csproj --configuration Release --no-restore --output ./artifacts -p:Version=${{ env.PACKAGE_VERSION }}
3844

3945
- name: Publish to NuGet
4046
run: dotnet nuget push "./artifacts/*.nupkg" --api-key "${{ secrets.NUGET_API_KEY }}" --source "https://api.nuget.org/v3/index.json" --skip-duplicate

0 commit comments

Comments
 (0)