We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11f441e commit ac73cc0Copy full SHA for ac73cc0
.github/workflows/release.yaml
@@ -75,11 +75,18 @@ jobs:
75
env:
76
GITHUB_TOKEN: ${{ secrets.CLI_RELEASE }}
77
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
78
- - name: Setup docker (missing on MacOS)
79
- if: runner.os == 'macos'
+ - name: Setup Docker with Colima
80
run: |
81
- brew install docker colima
82
- colima start
+ # Install Docker CLI
+ brew install docker
+ # 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!"
90
- name: Publish packages to APT repo
91
if: contains(github.ref_name, '-') == false
92
0 commit comments