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 c9262ff commit 60ce15cCopy full SHA for 60ce15c
.github/workflows/push.yml
@@ -24,10 +24,10 @@ jobs:
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
+ run: >-
+ for i in $(find ${{ env.NUGET_DIR }} -type f -name "*.nupkg");
29
do
30
- echo "$file"
+ echo "File: ${i} \n";
31
done
32
33
- name: Push Blazor.Diagrams.Core
0 commit comments