From 3d68836e4d8790485a9330ce4f428c3bd2f335f4 Mon Sep 17 00:00:00 2001 From: Erick Zanardo Date: Tue, 25 May 2021 23:09:07 -0300 Subject: [PATCH] fixing macos action build --- .github/workflows/release.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e665a08..52c5473 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -49,15 +49,12 @@ jobs: - run: flutter config --enable-macos-desktop - run: flutter build macos - name: Zips the build - uses: papeloto/action-zip@v1 - with: - files: fire_atlas_editor/build/macos/Build/Products/Release/Fire\ Atlas\ Editor.app - dest: fa_osx.zip + run: cd build/macos/Build/Products/Release/ && zip -r fa_osx.zip Fire\ Atlas\ Editor.app - name: Upload binary uses: actions/upload-artifact@v2 with: name: fa_osx - path: fa_osx.zip + path: fire_atlas_editor/build/macos/Build/Products/Release/fa_osx.zip windows: runs-on: windows-latest