From beacec19a5ebe89e95c4bd661b32caafc5e78f27 Mon Sep 17 00:00:00 2001 From: Dante291 Date: Sat, 23 Dec 2023 16:22:53 +0530 Subject: [PATCH] changes --- .github/workflows/pull-request.yml | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 9daeb4f73..30e5850f6 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -157,27 +157,4 @@ jobs: architecture: x64 - name: Building for ios run: flutter build ios --release --no-codesign - # '--no-codesign' is used for building without code signing. - # For actual distribution, proper code signing is required. - ######################################################## - ## Package the app as an .ipa and create a release ## - ######################################################## - - - name: Package .ipa file - run: | - mkdir Payload - cp -r build/ios/iphoneos/Runner.app Payload/Runner.app - zip -r app.ipa Payload - # This packages the Runner.app into an .ipa file - - - uses: ncipollo/release-action@v1 - with: - name: "Automated iOS Release" - artifacts: "app.ipa" - allowUpdates: "true" - generateReleaseNotes: false - tag: "automated" - body: | - This is an automated release, triggered by a recent push. - This may or may not be stable, so please have a look at the stable release(s).