Skip to content

Commit ac73cc0

Browse files
committed
fix: clean Colima setup for Docker on macOS
1 parent 11f441e commit ac73cc0

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

.github/workflows/release.yaml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,18 @@ jobs:
7575
env:
7676
GITHUB_TOKEN: ${{ secrets.CLI_RELEASE }}
7777
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
78-
- name: Setup docker (missing on MacOS)
79-
if: runner.os == 'macos'
78+
- name: Setup Docker with Colima
8079
run: |
81-
brew install docker colima
82-
colima start
80+
# Install Docker CLI
81+
brew install docker
82+
# Install Colima
83+
brew install colima
84+
# Start Colima
85+
colima start --cpu 2 --memory 4 --disk 20
86+
# Verify Docker is working
87+
docker --version
88+
docker info
89+
echo "Docker is ready!"
8390
- name: Publish packages to APT repo
8491
if: contains(github.ref_name, '-') == false
8592
env:

0 commit comments

Comments
 (0)