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 5c2a0db
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 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
3 changes: 2 additions & 1 deletion fastlane/Fastfile
Expand Up @@ -34,7 +34,8 @@ 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')
Expand Down

0 comments on commit 5c2a0db

Please sign in to comment.