Skip to content

Commit

Permalink
More GitHub actions changes
Browse files Browse the repository at this point in the history
Turns out that the ability to differentiate by custom name to
avoid name clashes is bullshit.
  • Loading branch information
luckyrat committed Jul 11, 2023
1 parent 93d1772 commit 271b4ae
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/flutter_release_ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ jobs:
env:
GH_TOKEN: ${{ github.token }}
GH_RELEASE_TAG_NAME: ${{ github.event.release.tag_name }}
run: gh release upload $GH_RELEASE_TAG_NAME ios/Runner.app.dSYM.zip#fairySymbols
run: |
mv ios/Runner.app.dSYM.zip ios/fairy.Runner.app.dSYM.zip
gh release upload $GH_RELEASE_TAG_NAME ios/fairy.Runner.app.dSYM.zip
DeployIosProdTestflight:
name: Build and release prod testflight
Expand Down Expand Up @@ -139,4 +141,6 @@ jobs:
env:
GH_TOKEN: ${{ github.token }}
GH_RELEASE_TAG_NAME: ${{ github.event.release.tag_name }}
run: gh release upload $GH_RELEASE_TAG_NAME ios/Runner.app.dSYM.zip#productionSymbols
run: |
mv ios/Runner.app.dSYM.zip ios/production.Runner.app.dSYM.zip
gh release upload $GH_RELEASE_TAG_NAME ios/production.Runner.app.dSYM.zip
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.1+48
version: 1.1.1+49

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

0 comments on commit 271b4ae

Please sign in to comment.