Skip to content

Commit

Permalink
try to fix artifact upload for macos
Browse files Browse the repository at this point in the history
  • Loading branch information
dpolakovics committed Nov 4, 2024
1 parent 7acee14 commit c0eed62
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,14 @@ jobs:
- name: Install fyne
run: go install fyne.io/fyne/v2/cmd/fyne@latest
- name: Build Fyne application for macOS
run: fyne package -os darwin -icon Icon.png
run: |
fyne package -os darwin -icon Icon.png
zip -r SoundscapeSync.zip SoundscapeSync.app
- name: Upload macOS artifact
uses: actions/upload-artifact@v4
with:
name: macos-build
path: SoundscapeSync.app
path: SoundscapeSync.zip

create-release:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -106,4 +108,3 @@ jobs:
- name: show folders
run: |
ls -al
ls -al macos-build/

0 comments on commit c0eed62

Please sign in to comment.