Skip to content

Commit

Permalink
try to fix ios build
Browse files Browse the repository at this point in the history
  • Loading branch information
celuchmarek committed May 31, 2024
1 parent 7767bfe commit c2b5642
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ jobs:

- name: Building IPA
working-directory: ./app
run: flutter build ipa --release
run: flutter build ipa --release --export-options-plist=./ios/ExportOptions.plist

- name: collect ipa artifacts
uses: actions/upload-artifact@v2
Expand Down
17 changes: 17 additions & 0 deletions ios/ExportOptions.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>method</key>
<string>app-store</string> <!-- app-store, ad-hoc, enterprise, development -->
<key>teamID</key>
<string>44U4JSRX4Z</string>
<key>signingStyle</key>
<string>manual</string>
<key>provisioningProfiles</key>
<dict>
<key>digital.slovensko.avm</key>
<string>4b93279b-5424-4870-8d84-a2c87e6b4e0f</string>
</dict>
</dict>
</plist>

0 comments on commit c2b5642

Please sign in to comment.