fix: clear cached tauri bundle artifacts

This commit is contained in:
lucaronin
2026-04-14 15:30:10 +02:00
parent 73c619892b
commit 2b734da4cb
2 changed files with 8 additions and 0 deletions

View File

@@ -83,6 +83,10 @@ jobs:
- name: Install frontend dependencies
run: pnpm install --frozen-lockfile
- name: Clear cached bundle artifacts
run: |
rm -rf src-tauri/target/${{ matrix.target }}/release/bundle
- name: Set version
run: |
VERSION="${{ needs.version.outputs.version }}"

View File

@@ -101,6 +101,10 @@ jobs:
- name: Install frontend dependencies
run: pnpm install --frozen-lockfile
- name: Clear cached bundle artifacts
run: |
rm -rf src-tauri/target/${{ matrix.target }}/release/bundle
- name: Set version
run: |
VERSION="${{ needs.version.outputs.version }}"