From 75296d56191670f9c962512c4a3ff2dd69112eb2 Mon Sep 17 00:00:00 2001 From: Vivek Sharma <52695196+vivekgsharma@users.noreply.github.com> Date: Thu, 3 Oct 2024 16:07:40 +0530 Subject: [PATCH] chore(release): replace colima with native docker in macOS builds (#2188) --- .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 09a9d209c94..dba5d592f56 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