Skip to content

Commit 5982977

Browse files
committed
change docker setup
1 parent c2807a0 commit 5982977

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

.github/workflows/main.yml

+12-7
Original file line numberDiff line numberDiff line change
@@ -48,19 +48,24 @@ jobs:
4848
go-version: 1.16
4949
- name: Install fyne-cross
5050
run: go install github.com/fyne-io/fyne-cross@latest
51-
- name: Install Homebrew
52-
run: |
53-
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
54-
- name: Install Docker
55-
run: |
56-
brew install docker
51+
# - name: Install Homebrew
52+
# run: |
53+
# /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
54+
# - name: Install Docker
55+
# run: |
56+
# brew install docker
57+
- name: Set up Docker
58+
uses: crazy-max/ghaction-setup-docker@v3
5759
- name: Build Fyne application for macOS
5860
env:
5961
CGO_ENABLED: 1
6062
GOOS: darwin
6163
GOARCH: amd64 # Change if targeting a different architecture
6264
CC: o32-clang # Specify your C compiler here
63-
run: fyne-cross darwin
65+
run: |
66+
set -x
67+
docker version
68+
fyne-cross darwin
6469
- name: Upload macOS artifact
6570
uses: actions/upload-artifact@v3
6671
with:

0 commit comments

Comments
 (0)