diff --git a/.github/workflows/elixir-tauri-ci.yml b/.github/workflows/elixir-tauri-ci.yml index 3a28804..7f82c84 100644 --- a/.github/workflows/elixir-tauri-ci.yml +++ b/.github/workflows/elixir-tauri-ci.yml @@ -169,17 +169,17 @@ jobs: # Step: Define how to cache the `_build` directory. After the first run, # this speeds up tests runs a lot. This includes not re-compiling our # project's downloaded deps every run. - - name: Mix Cache compiled build - id: burrito-cache-build - uses: actions/cache@v3 - env: - cache-name: burrito-cache-compiled-build - with: - path: example/_build - key: ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-mix-${{ env.cache-name }}-${{ hashFiles('**/mix.lockkk') }} - restore-keys: | - ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-mix-${{ env.cache-name }}- - ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}--mix- + # - name: Mix Cache compiled build + # id: burrito-cache-build + # uses: actions/cache@v3 + # env: + # cache-name: burrito-cache-compiled-build + # with: + # path: example/_build + # key: ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-mix-${{ env.cache-name }}-${{ hashFiles('**/mix.lockkk') }} + # restore-keys: | + # ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-mix-${{ env.cache-name }}- + # ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}--mix- # Step: Conditionally bust the cache when job is re-run. # Sometimes, we may have issues with incremental builds that are fixed by diff --git a/lib/tauri/bundle_release.ex b/lib/tauri/bundle_release.ex index ed93ea4..4c7876a 100644 --- a/lib/tauri/bundle_release.ex +++ b/lib/tauri/bundle_release.ex @@ -58,7 +58,7 @@ defmodule ExTauri.Tauri.BundleRelease do end defp burrito_wrap_release(release_name) do - Mix.Task.run("release", [release_name, "--override"]) + Mix.Task.run("release", [release_name]) release_name end