Skip to content

Commit

Permalink
fix: find command
Browse files Browse the repository at this point in the history
  • Loading branch information
Chiichen committed Oct 19, 2024
1 parent 180f62c commit bf1fc72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/glibcs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
run: |
mkdir -p arch/${{matrix.arch}}/release/glibcs
cd arch/${{matrix.arch}}/install/glibcs
find . -type d -mindepth 1 -maxdepth 1 -exec tar czvf ${GITHUB_WORKSPACE}/arch/${{matrix.arch}}/release/glibcs/glibc-${{env.GLIBC_VERSION}}-{}.tar.gz {} \;
find * -mindepth 0 -maxdepth 0 -type d -exec tar czvf ${GITHUB_WORKSPACE}/arch/${{matrix.arch}}/release/glibcs/glibc-${{env.GLIBC_VERSION}}-{}.tar.gz {} \;
- name: Upload glibcs
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit bf1fc72

Please sign in to comment.