Skip to content

Commit

Permalink
Replaced ls with find call
Browse files Browse the repository at this point in the history
  • Loading branch information
ko1N committed Mar 28, 2024
1 parent d24669d commit 14b3cf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,4 @@ jobs:
- name: Upload plugin
run: |
cd target/${{ matrix.platform.target }}/release
memflowup --skip-version-check push --token ${{ secrets.MEMFLOW_REGISTRY_TOKEN }} --priv-key ec-secp256k1-priv-key.pem $(ls *{.so,.dll,.dylib})
memflowup --skip-version-check push --token ${{ secrets.MEMFLOW_REGISTRY_TOKEN }} --priv-key ec-secp256k1-priv-key.pem $(find . -maxdepth 1 -name '*.so' -o -name '*.dll' -o -name '*.dylib')

0 comments on commit 14b3cf3

Please sign in to comment.