From c9262ff495ecff2353ae16b842b18bbad234c0a6 Mon Sep 17 00:00:00 2001 From: Haytam Zanid <34218324+zHaytam@users.noreply.github.com> Date: Sat, 24 Feb 2024 12:36:57 +0100 Subject: [PATCH] Update push.yml --- .github/workflows/push.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index d15fccc3..af51a15b 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -23,6 +23,13 @@ jobs: working-directory: src/Blazor.Diagrams.Algorithms run: 'dotnet pack -p:GeneratePackageOnBuild=false --configuration Release --output ${{ env.NUGET_DIR }}' + - name: Test + run: > + find "${{ env.NUGET_DIR }}" -type f -iname "*.nupkg"|while read file + do + echo "$file" + done + - name: Push Blazor.Diagrams.Core run: 'dotnet nuget push ${{ env.NUGET_DIR }}/Z.Blazor.Diagrams.Core.3.0.1.nupkg --api-key "${{ secrets.NUGET_API_KEY }}" --source https://api.nuget.org/v3/index.json --skip-duplicate'