From 917410259328e0f294a3b044b703f7811d7d78ab Mon Sep 17 00:00:00 2001 From: Meta Spartan Date: Sun, 23 Jun 2024 23:43:22 -0600 Subject: [PATCH] Retry CI --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 961a360..5f0ca3e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: environment: main strategy: matrix: - os: [ubuntu-latest] + os: [ubuntu-latest, macos-latest] steps: - uses: actions/checkout@v4 @@ -49,7 +49,7 @@ jobs: if [ "${{ matrix.os }}" == "ubuntu-latest" ]; then fyne-cross windows -arch=amd64 -icon icon.png fyne-cross linux -arch=amd64 -icon icon.png - # elif [ "${{ matrix.os }}" == "macos-latest" ]; then + elif [ "${{ matrix.os }}" == "macos-latest" ]; then fyne-cross darwin -arch=arm64 -icon icon.png --macosx-sdk-path /opt/MacOSX13.3.sdk -app-id com.contextlabs.ollamark fi shell: bash