Skip to content

Commit

Permalink
feat: add build for macos
Browse files Browse the repository at this point in the history
  • Loading branch information
dpolakovics committed Nov 7, 2024
1 parent 08f617d commit 160a107
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,22 +45,22 @@ jobs:
name: windows-build
path: fyne-cross/bin/windows-amd64

# build-mac:
# runs-on: macos-latest
# steps:
# - uses: actions/checkout@v4
# - name: Set up Go
# uses: actions/setup-go@v5
# with:
# go-version: 1.22
# - name: Build Fyne application for macOS
# # run: fyne package -os darwin -icon Icon.png
# run: GOOS=darwin GOARCH=arm64 go build -o SoundscapeSync.app
# - name: Upload macOS artifact
# uses: actions/upload-artifact@v4
# with:
# name: macos-build
# path: SoundscapeSync.app
build-mac:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22
- name: Build Fyne application for macOS
# run: fyne package -os darwin -icon Icon.png
run: GOOS=darwin GOARCH=arm64 go build -o SoundscapeSync.app
- name: Upload macOS artifact
uses: actions/upload-artifact@v4
with:
name: macos-build
path: SoundscapeSync.app

create-release:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 160a107

Please sign in to comment.