Skip to content

Commit

Permalink
remove temp file from the archive file
Browse files Browse the repository at this point in the history
  • Loading branch information
Joinhack committed Apr 23, 2024
1 parent 746561d commit 064b731
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/runtime_release_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,10 @@ jobs:
uses: JesseTG/[email protected]
with:
path: target/${{ matrix.target }}/release/deps
- name: Remove Files
run: |
rm -rf target/${{ matrix.target }}/release/*.d
rm -rf target/${{ matrix.target }}/release/*.rlib
- name: Archive Release
uses: thedoctor0/zip-release@main
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/runtime_release_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,10 @@ jobs:
uses: JesseTG/[email protected]
with:
path: target/${{ matrix.target }}/release/deps
- name: Remove Files
run: |
rm -rf target/${{ matrix.target }}/release/*.d
rm -rf target/${{ matrix.target }}/release/*.rlib
- name: Archive Release
uses: thedoctor0/zip-release@main
with:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/runtime_release_win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,11 @@ jobs:
uses: JesseTG/[email protected]
with:
path: target/${{ matrix.target }}/release/deps
- name: Remove Files
run: |
rm target/${{ matrix.target }}/release/*.d
rm target/${{ matrix.target }}/release/*.rlib
rm target/${{ matrix.target }}/release/*.pdb
- name: Archive Release
uses: thedoctor0/zip-release@main
with:
Expand Down

0 comments on commit 064b731

Please sign in to comment.