Skip to content

Commit

Permalink
Add Upload to AppStoreConnect step in iOS workflow (#11)
Browse files Browse the repository at this point in the history
* Add upload to AppStoreConnect step in iOS workflow
* Bump version number to test AppStoreConnect uploads
  • Loading branch information
karolszafranski authored Jan 20, 2025
1 parent 7c04b4e commit beb35f2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions .github/workflows/ios-app-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,14 @@ jobs:
name: artifacts.tar
path: artifacts.tar
retention-days: 30

- name: AppStore Upload
if: ${{ github.event.inputs.build_type == 'release' }}
env:
FASTLANE_USER: ${{ vars.TABRIS_IOS_FASTLANE_USER }}
FASTLANE_APP_SPECIFIC_PASSWORD: ${{ secrets.TABRIS_IOS_FASTLANE_APP_SPECIFIC_PASSWORD }}
run: |
xcrun altool --upload-app --type ios \
--file "$(find ./artifacts/ -iname "*.ipa")" \
--username $FASTLANE_USER \
--password '@env:FASTLANE_APP_SPECIFIC_PASSWORD'
2 changes: 1 addition & 1 deletion cordova/config.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version='1.0' encoding='utf-8'?>
<widget
id="com.eclipsesource.tabris.remote"
version="3.17.0"
version="3.17.1"
xmlns:android="http://schemas.android.com/apk/res/android"
android-versionCode="$BUILD_NUMBER"
ios-CFBundleVersion="$BUILD_NUMBER">
Expand Down

0 comments on commit beb35f2

Please sign in to comment.