Skip to content

Commit 60ce15c

Browse files
authored
Update push.yml
1 parent c9262ff commit 60ce15c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/push.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
run: 'dotnet pack -p:GeneratePackageOnBuild=false --configuration Release --output ${{ env.NUGET_DIR }}'
2525

2626
- name: Test
27-
run: >
28-
find "${{ env.NUGET_DIR }}" -type f -iname "*.nupkg"|while read file
27+
run: >-
28+
for i in $(find ${{ env.NUGET_DIR }} -type f -name "*.nupkg");
2929
do
30-
echo "$file"
30+
echo "File: ${i} \n";
3131
done
3232
3333
- name: Push Blazor.Diagrams.Core

0 commit comments

Comments
 (0)