From bb8d4f6a0e20d5e47836522e3a0bd99a8a85b91b Mon Sep 17 00:00:00 2001 From: David Senk Date: Tue, 3 Sep 2024 17:59:19 -0400 Subject: [PATCH] made macos more specific path, and added ios --- .github/workflows/macos-ios.yaml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/workflows/macos-ios.yaml b/.github/workflows/macos-ios.yaml index f355e56..12cb0d5 100644 --- a/.github/workflows/macos-ios.yaml +++ b/.github/workflows/macos-ios.yaml @@ -1,4 +1,4 @@ -name: Build MacOS (iOS not enabled) +name: Build MacOS and iOS on: push: @@ -28,9 +28,20 @@ jobs: - name: Build for MacOS run: flutter build macos + - name: Build for iOS + run: flutter build ios --release --no-codesign + + - name: Gather macos artifacts uses: actions/upload-artifact@v4 with: name: flutter-macos-build-latest - path: build/macos/Build + path: build/macos/Build/Products + if-no-files-found: error + + - name: Gather ios artifacts + uses: actions/upload-artifact@v4 + with: + name: flutter-ios-build-latest + path: build/ios/iphoneos if-no-files-found: error