Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
metaspartan committed Apr 30, 2024
1 parent 1acaa92 commit f107b3c
Showing 1 changed file with 18 additions and 10 deletions.
28 changes: 18 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ on:

jobs:
release:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]

steps:
- uses: actions/checkout@v4
Expand All @@ -17,25 +20,30 @@ jobs:
with:
go-version: '1.20' # Ensure this is the version you want to use

- name: Download macOS SDK
run: |
curl -L -o MacOSX13.3.sdk.tar.xz "https://github.com/joseluisq/macosx-sdks/releases/download/13.3/MacOSX13.3.sdk.tar.xz"
sudo mkdir -p /opt/MacOSX13.3.sdk
sudo tar -xJf MacOSX13.3.sdk.tar.xz -C /opt/MacOSX13.3.sdk
- name: Install fyne-cross
run: go install github.com/fyne-io/fyne-cross@latest

- name: Install X11 development libraries
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y libx11-dev libxcursor-dev libxrandr-dev libxinerama-dev libgl1-mesa-dev libxi-dev libxext-dev libglu1-mesa-dev xorg-dev
- name: Download macOS SDK
if: matrix.os == 'macos-latest'
run: |
curl -L -o MacOSX13.3.sdk.tar.xz "https://github.com/joseluisq/macosx-sdks/releases/download/13.3/MacOSX13.3.sdk.tar.xz"
sudo mkdir -p /opt/MacOSX13.3.sdk
sudo tar -xJf MacOSX13.3.sdk.tar.xz -C /opt/MacOSX13.3.sdk
- name: Build
run: |
fyne-cross windows -arch=amd64 -icon icon.png
fyne-cross linux -arch=amd64 -icon icon.png
fyne-cross darwin -arch=arm64 -icon icon.png --macosx-sdk-path /opt/MacOSX13.3.sdk -app-id com.contextlabs.ollamark
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
fyne-cross darwin -arch=arm64 -icon icon.png --macosx-sdk-path /opt/MacOSX13.3.sdk -app-id com.contextlabs.ollamark
fi
env:
FYNE_CROSS_TARGETS: windows/amd64 linux/amd64 darwin/arm64
FYNE_CROSS_DARWIN_SDK: /opt/MacOSX13.3.sdk
Expand Down

0 comments on commit f107b3c

Please sign in to comment.