Skip to content

Commit

Permalink
Create pod_update.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Komodo5197 authored Dec 20, 2023
1 parent 4f49d69 commit 42fb9e9
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/pod_update.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 42fb9e9

Please sign in to comment.