Skip to content

Commit 45600b3

Browse files
authored
Update release.yml
fix: Replace Colima with native Docker in macOS builds
1 parent 9065a0a commit 45600b3

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -242,9 +242,11 @@ jobs:
242242
- name: Install macOS build deps
243243
if: runner.os == 'macOS'
244244
run: |
245-
brew install llvm docker colima coreutils
246-
colima start
247-
echo "/usr/local/opt/llvm/bin" >> $GITHUB_PATH
245+
brew install llvm coreutils
246+
247+
- name: Set up Docker for macOS
248+
if: runner.os == 'macOS'
249+
uses: docker-practice/actions-setup-docker@master
248250

249251
- name: Install the Apple certificate
250252
if: runner.os == 'macOS'
@@ -278,7 +280,7 @@ jobs:
278280

279281
- name: Create package
280282
env:
281-
OSX_KEYCHAIN: $RUNNER_TEMP/app-signing.keychain-db
283+
OSX_KEYCHAIN: ${{ runner.temp }}/app-signing.keychain-db
282284
run: "${GITHUB_WORKSPACE}/scripts/pack_dashmate.sh ${{ matrix.package_type }}"
283285

284286
- name: Upload artifacts to action summary

0 commit comments

Comments
 (0)