Skip to content

Commit

Permalink
Remove build step from ios workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Albert221 committed Aug 29, 2022
1 parent d6ff513 commit c50abc2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/release-app-store.yml
Expand Up @@ -37,9 +37,6 @@ jobs:
- name: Download pub dependencies
run: flutter pub get

- name: Build iOS application bundle
run: flutter build ios --no-codesign

- name: Cache bundle dependencies
uses: actions/cache@v2
with:
Expand All @@ -53,7 +50,7 @@ jobs:
bundle config path vendor/bundle
bundle install
- name: Release to App Store
- name: Match, build IPA and release
env:
MATCH_GIT_URL: ${{ secrets.MATCH_GIT_URL }}
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
Expand Down
5 changes: 3 additions & 2 deletions fastlane/Fastfile
Expand Up @@ -34,13 +34,14 @@ platform :ios do
<string>#{ENV["sigh_#{ENV["APPLE_APP_IDENTIFIER"]}_appstore_profile-name"]}</string>
</dict>
</dict>
</plist>EOF
</plist>
EOF
File.write("build/ExportOptions.plist", export_options)

sh('flutter build ipa --release --export-options-plist=build/ExportOptions.plist')

upload_to_app_store(
ipa: "build/ios/iphoneos/Runner.app"
ipa: "build/ios/iphoneos/Runner.app",

force: true,
overwrite_screenshots: true,
Expand Down

0 comments on commit c50abc2

Please sign in to comment.