From 45600b36b3303b2fd57e4450e6c279f86c21710e Mon Sep 17 00:00:00 2001 From: Vivek Sharma <52695196+vivekgsharma@users.noreply.github.com> Date: Mon, 30 Sep 2024 20:39:43 +0530 Subject: [PATCH] Update release.yml fix: Replace Colima with native Docker in macOS builds --- .github/workflows/release.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 09a9d209c9..dba5d592f5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -242,9 +242,11 @@ jobs: - name: Install macOS build deps if: runner.os == 'macOS' run: | - brew install llvm docker colima coreutils - colima start - echo "/usr/local/opt/llvm/bin" >> $GITHUB_PATH + brew install llvm coreutils + + - name: Set up Docker for macOS + if: runner.os == 'macOS' + uses: docker-practice/actions-setup-docker@master - name: Install the Apple certificate if: runner.os == 'macOS' @@ -278,7 +280,7 @@ jobs: - name: Create package env: - OSX_KEYCHAIN: $RUNNER_TEMP/app-signing.keychain-db + OSX_KEYCHAIN: ${{ runner.temp }}/app-signing.keychain-db run: "${GITHUB_WORKSPACE}/scripts/pack_dashmate.sh ${{ matrix.package_type }}" - name: Upload artifacts to action summary