Skip to content

Update podfile.lock

Update podfile.lock #1

Workflow file for this run

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