File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -79,20 +79,19 @@ jobs:
79
79
run : |
80
80
# Install Docker on macOS runner
81
81
brew install --cask docker
82
- # Start Docker daemon
83
- sudo /Applications/Docker.app/Contents/MacOS/Docker &
82
+ # Start Docker Desktop
83
+ open -a Docker
84
84
# Wait for Docker to be ready
85
- sleep 30
85
+ echo "Waiting for Docker to start..."
86
+ timeout 60 bash -c 'until docker info > /dev/null 2>&1; do sleep 2; done'
86
87
docker --version
87
88
echo "Docker is now available for createrepo_c operations"
88
89
- name : Publish packages to APT repo
89
- if : contains(github.ref_name, '-') == false
90
90
env :
91
91
GPG_PASSPHRASE : ${{ secrets.GPG_PASSPHRASE }}
92
92
GPG_PRIVATE_KEY_FINGERPRINT : ${{ steps.import_gpg.outputs.fingerprint }}
93
93
run : ./scripts/publish-apt-packages.sh
94
94
- name : Publish packages to RPM repo
95
- if : contains(github.ref_name, '-') == false
96
95
env :
97
96
GPG_PASSPHRASE : ${{ secrets.GPG_PASSPHRASE }}
98
97
GPG_PRIVATE_KEY_FINGERPRINT : ${{ steps.import_gpg.outputs.fingerprint }}
You can’t perform that action at this time.
0 commit comments