From 8bb285d7384c5deda818b1068e949d7febfd30a3 Mon Sep 17 00:00:00 2001 From: Liuhaai Date: Wed, 9 Oct 2024 16:21:42 -0700 Subject: [PATCH] update image.yaml --- .github/workflows/image.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/image.yaml b/.github/workflows/image.yaml index e611bd97..ca771dca 100644 --- a/.github/workflows/image.yaml +++ b/.github/workflows/image.yaml @@ -45,7 +45,8 @@ jobs: if: runner.os == 'macOS' run: | brew install docker colima - sudo curl -L -o /opt/homebrew/Cellar/lima/0.22.0/bin/limactl https://github.com/mikekazakov/lima-nohvf/raw/master/limactl && sudo chmod +x /opt/homebrew/Cellar/lima/0.22.0/bin/limactl + LIMACTL_PATH=$(brew --prefix)/bin/limactl + sudo curl -L -o $LIMACTL_PATH https://github.com/mikekazakov/lima-nohvf/raw/master/limactl && sudo chmod +x $LIMACTL_PATH colima start --network-address --arch arm64 --vm-type=qemu - name: Setup Docker buildx