Skip to content

Commit faeeb94

Browse files
committed
Add random failure fix with find
1 parent 5bca8e5 commit faeeb94

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.github/workflows/build-wolfprovider.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,7 @@ jobs:
7575
mkdir -p "/tmp/wolfprov-packages"
7676
echo "Moving wolfssl files to artifacts directory..."
7777
78-
find /tmp/wolfssl-pkg -name "*wolfssl*" -type f -name "*.deb" -exec cp {} /tmp/wolfprov-packages/ \;
79-
find /tmp/wolfssl-pkg -name "*wolfssl*" -type f -name "*.dsc" -exec cp {} /tmp/wolfprov-packages/ \;
80-
find /tmp/wolfssl-pkg -name "*wolfssl*" -type f -name "*.tar.gz" -exec cp {} /tmp/wolfprov-packages/ \;
81-
find /tmp/wolfssl-pkg -name "*wolfssl*" -type f -name "*.orig.tar.gz" -exec cp {} /tmp/wolfprov-packages/ \;
78+
find /tmp/wolfssl-pkg -name "*wolfssl*" -type f \( -name "*.deb" -o -name "*.dsc" -o -name "*.tar.gz" -o -name "*.orig.tar.gz" \) -exec cp {} /tmp/wolfprov-packages/ \;
8279
8380
- name: Build Debian packages (wolfProvider + OpenSSL)
8481
run: |

0 commit comments

Comments
 (0)