Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
OrShamirCM authored May 2, 2024
1 parent bc3cd58 commit ee70508
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,25 @@ jobs:
- name: Install gon
run: |
brew install Bearer/tap/gon
- name: Install and start docker
- name: Install Docker
if: inputs.dev == false
run: |
# Install Docker CLI using Homebrew
brew install docker
- name: Start Docker engine daemon
if: inputs.dev == false
run: |
# Start Docker engine daemon
dockerd &
- name: Test docker
- name: Wait for Docker daemon to start
if: inputs.dev == false
run: |
# Wait for Docker daemon to start
sleep 10
- name: Test Docker
if: inputs.dev == false
run: |
# Test Docker installation
docker version
docker info
- name: Login to Docker Hub
Expand Down

0 comments on commit ee70508

Please sign in to comment.