We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f0d5f1 commit c135f16Copy full SHA for c135f16
1 file changed
.github/workflows/release.yaml
@@ -75,17 +75,11 @@ jobs:
75
env:
76
GITHUB_TOKEN: ${{ secrets.CLI_RELEASE }}
77
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
78
- - name: Install Docker
+ - name: Setup docker (missing on MacOS)
79
+ if: runner.os == 'macos'
80
run: |
- # Install Docker on macOS runner
81
- brew install --cask docker
82
- # Start Docker Desktop
83
- open -a Docker
84
- # Wait for Docker to be ready
85
- echo "Waiting for Docker to start..."
86
- timeout 60 bash -c 'until docker info > /dev/null 2>&1; do sleep 2; done'
87
- docker --version
88
- echo "Docker is now available for createrepo_c operations"
+ brew install docker
+ colima start
89
- name: Publish packages to APT repo
90
91
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
0 commit comments