diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 31df6109..1ae2f23d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,7 +60,10 @@ jobs: - name: (MacOS) Build artifact if: matrix.os == 'macos-latest' && !startsWith(github.ref, 'refs/tags/v') - run: yarn tauri build -b dmg + run: | + # clean up cached bundle + yarn rimraf src-tauri/target/release/bundle/ + yarn tauri build -b dmg - name: (Windows) Build artifact if: matrix.os == 'windows-latest' && !startsWith(github.ref, 'refs/tags/v')