From 300b5f8a728bc84f881f10c901ba0680fce938e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20=C4=90=E1=BA=A1t?= <52943116+qnblackcat@users.noreply.github.com> Date: Mon, 29 Jul 2024 20:16:00 +0700 Subject: [PATCH] Caching brew dependencies (#1327) --- .github/workflows/buildapp.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/buildapp.yml b/.github/workflows/buildapp.yml index d0abe16906..24503c555e 100644 --- a/.github/workflows/buildapp.yml +++ b/.github/workflows/buildapp.yml @@ -55,7 +55,15 @@ jobs: path: main submodules: recursive + - name: Caching brew dependencies + id: brew_cache + uses: tecolicom/actions-use-homebrew-tools@v1.2 + with: + tools: ldid dpkg make + cache: yes + - name: Install Dependencies + if: steps.brew_cache.outputs.cache-hit != 'true' run: brew install ldid dpkg make - name: Set PATH environment variable @@ -69,7 +77,7 @@ jobs: path: theos submodules: recursive - - name: Caching + - name: Caching SDK id: SDK uses: actions/cache@v4.0.0 env: