From 67dd118e271ebaac006e450bcfc00c5bd77fa528 Mon Sep 17 00:00:00 2001 From: Exadra37 Date: Fri, 12 Apr 2024 00:12:50 +0100 Subject: [PATCH] test ci 28. Signed-off-by: Exadra37 --- .github/workflows/elixir-tauri-ci.yml | 22 +++++++++++----------- lib/tauri/bundle_release.ex | 2 +- 2 files changed, 12 insertions(+), 12 deletions(-) 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