Skip to content

Commit

Permalink
Retain iOS symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
luckyrat committed Jul 11, 2023
1 parent 8197601 commit 0f1294d
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
14 changes: 13 additions & 1 deletion .github/workflows/flutter_release_ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
# NB: ${{ syntax }} is required despite GitHub docs to the contrary. Appears that ! operator can't be used otherwise.

runs-on: macos-13
permissions: write-all

steps:
- name: Checkout
Expand Down Expand Up @@ -64,12 +65,18 @@ jobs:
run: |
cd ios
bundle exec fastlane beta_stage
- name: Store symbols on GitHub Release
run: |
pwd
gh release upload $GITHUB_REF ios/Runner.app.dSYM.zip#fairySymbols
DeployIosProdTestflight:
name: Build and release prod testflight
if: ${{ !contains ( github.event.release.tag_name, '_' ) || endsWith( github.event.release.tag_name, '_ios' ) }}

runs-on: macos-13
permissions: write-all

steps:
- name: Checkout
Expand Down Expand Up @@ -125,4 +132,9 @@ jobs:
APP_STORE_CONNECT_API_KEY_KEY_ID: '${{ secrets.APP_STORE_CONNECT_API_KEY_KEY_ID }}'
run: |
cd ios
bundle exec fastlane prod_stage_testflight
bundle exec fastlane prod_stage_testflight
- name: Store symbols on GitHub Release
run: |
pwd
gh release upload $GITHUB_REF ios/Runner.app.dSYM.zip#productionSymbols
7 changes: 7 additions & 0 deletions android/fastlane/metadata/android/en-GB/changelogs/46.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
* Enabled new account registration via in-app purchases on Google Play and Apple App Store
* Text in main password fields can be made visible
* Allow file imports to be cancelled at password entry step
* Allow old free (local-only) vaults to be exported again or deleted ahead of the usual automatic deletion date
* Clarify purpose of "Sign in" button in menu for free users
* Enforce the existing requirement for email address validation
* Improved performance and reliability; dependency updates
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 1.1.0+45
version: 1.1.1+46

environment:
sdk: '>=2.18.0 <3.0.0'
Expand Down

0 comments on commit 0f1294d

Please sign in to comment.