We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ae367c commit c9262ffCopy full SHA for c9262ff
.github/workflows/push.yml
@@ -23,6 +23,13 @@ jobs:
23
working-directory: src/Blazor.Diagrams.Algorithms
24
run: 'dotnet pack -p:GeneratePackageOnBuild=false --configuration Release --output ${{ env.NUGET_DIR }}'
25
26
+ - name: Test
27
+ run: >
28
+ find "${{ env.NUGET_DIR }}" -type f -iname "*.nupkg"|while read file
29
+ do
30
+ echo "$file"
31
+ done
32
+
33
- name: Push Blazor.Diagrams.Core
34
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'
35
0 commit comments