Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
RoseBlume committed Nov 1, 2024
1 parent a40d0db commit d9c2b93
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,18 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf alsa
- name: Remove node_modules
run: sudo rm -r node_modules
- name: Remove Modules(Linux)
if: matrix.platform == 'ubuntu-lastest'
run: |
sudo rm -r node_modules
sudo rm src-tauri/vendor
sudo rm src-tauri/.cargo
- name: Remove Modules(Windows)
if: matrix.platform == 'windows-latest'
run: |
rmdir /s /q node_modules
rmdir /s /q src-tauri\vendor
rmdir /s /q src-tauri\.cargo
- name: setup pnpm
uses: pnpm/action-setup@v4
with:
Expand Down

0 comments on commit d9c2b93

Please sign in to comment.