From 42fb9e970ea4f775d86d5826ca37e8614e0b209d Mon Sep 17 00:00:00 2001 From: Komodo <45665554+Komodo5197@users.noreply.github.com> Date: Wed, 20 Dec 2023 11:56:30 -0500 Subject: [PATCH] Create pod_update.yml --- .github/workflows/pod_update.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/pod_update.yml diff --git a/.github/workflows/pod_update.yml b/.github/workflows/pod_update.yml new file mode 100644 index 000000000..045514460 --- /dev/null +++ b/.github/workflows/pod_update.yml @@ -0,0 +1,23 @@ +name: Update podfile.lock + +on: workflow_dispatch + +jobs: + build-ios: + name: Build for iOS + runs-on: macos-latest + steps: + - uses: actions/checkout@v2 + - uses: subosito/flutter-action@v2 + with: + channel: 'stable' + architecture: x64 + - run: flutter pub get + - run: pod update + working-directory: ios + - uses: actions/upload-artifact@v3 + with: + name: podfile_lock + path: ios/Podfile.lock + retention-days: 1 + - run: flutter build ios --release --no-codesign