Skip to content

Commit 0cef308

Browse files
committed
download again
1 parent b70c8a9 commit 0cef308

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/build-native-nuget.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,15 @@ jobs:
2525
steps:
2626
- name: Download/Extract Paddle Inference C API Archive
2727
run: |
28-
wget -O paddle_inference_c.zip ${{ matrix.url }}
28+
wget -q -O paddle_inference_c.zip ${{ matrix.url }}
29+
2930
if [[ "${{ matrix.rid }}" == "win-x64" ]]; then
3031
unzip paddle_inference_c.zip
3132
else
3233
tar -xzf paddle_inference_c.zip
3334
fi
34-
cd paddle_inference_c
35+
rm paddle_inference_c.zip
36+
3537
echo "::group::Extracted Paddle Inference C API Archive"
3638
ls -lR
3739
echo "::endgroup::"

0 commit comments

Comments
 (0)