Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Trying to push build by xcode #99

Closed
wants to merge 7 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions .github/workflows/ios_deploy.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Publish to App Store Connect

on:
push:
branches:
- main
workflow_dispatch:
on: push
# push:
# branches:
# - main
# workflow_dispatch:


jobs:
Expand Down Expand Up @@ -79,8 +79,10 @@ jobs:
IFS=''
buildName="${versionValue[0]}.${versionValue[1]}.${{ github.run_number }}"
echo "Uploading build $buildName"
flutter build ipa --release --build-number=$buildNumber --build-name=$buildName --export-options-plist=$HOME/export_options.plist

cd ios
# flutter build ipa --release --build-number=$buildNumber --build-name=$buildName --export-options-plist=$HOME/export_options.plist
xcode-project build-ipa --workspace=Runner.xcworkspace --scheme="Runner" --export-options-plist=$HOME/export_options.plist

- name: Upload to App Store Connect
run: |
APP_FILE=$(find $(pwd) -name "*.ipa")
Expand Down
Loading