Skip to content

Commit

Permalink
fix path for iOS
Browse files Browse the repository at this point in the history
  • Loading branch information
AyushBherwani1998 committed Mar 5, 2024
1 parent e765399 commit 7c8c1e6
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/appeitize-flutter-ios.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,14 @@ jobs:
pod install
- name: Build iOS simulator build
run: xcodebuild -workspace Runner.xcworkspace -scheme Runner -sdk iphonesimulator -derivedDataPath build
run: |
cd ios
xcodebuild -workspace Runner.xcworkspace -scheme Runner -sdk iphonesimulator -derivedDataPath build
- name: Compress iOS build
run: tar -czf ios_build.tar.gz build/Build/Products/Debug-iphonesimulator
run: |
cd ios
tar -czf ios_build.tar.gz build/Build/Products/Debug-iphonesimulator
- name: Upload Android buil to Appetize
uses: appetizeio/github-action-appetize@v1.0.1
Expand Down

0 comments on commit 7c8c1e6

Please sign in to comment.