Skip to content

Commit

Permalink
fix(ci): skip builder-debug files
Browse files Browse the repository at this point in the history
  • Loading branch information
NikhilNarayana committed Feb 23, 2025
1 parent b2ca3b1 commit fd4f659
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
commit: ${{ github.sha }}
- name: Flatten Directory structure
run: |
find ./ -mindepth 2 -type f -exec mv -t ./ -i '{}' +
find ./ -mindepth 2 -type f -not -name "builder-debug*" -exec mv -t ./ -i '{}' +
find . -type d -empty -delete
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
Expand Down

0 comments on commit fd4f659

Please sign in to comment.