Skip to content

Commit beb35f2

Browse files
Add Upload to AppStoreConnect step in iOS workflow (#11)
* Add upload to AppStoreConnect step in iOS workflow * Bump version number to test AppStoreConnect uploads
1 parent 7c04b4e commit beb35f2

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.github/workflows/ios-app-build.yaml

+11
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,14 @@ jobs:
6464
name: artifacts.tar
6565
path: artifacts.tar
6666
retention-days: 30
67+
68+
- name: AppStore Upload
69+
if: ${{ github.event.inputs.build_type == 'release' }}
70+
env:
71+
FASTLANE_USER: ${{ vars.TABRIS_IOS_FASTLANE_USER }}
72+
FASTLANE_APP_SPECIFIC_PASSWORD: ${{ secrets.TABRIS_IOS_FASTLANE_APP_SPECIFIC_PASSWORD }}
73+
run: |
74+
xcrun altool --upload-app --type ios \
75+
--file "$(find ./artifacts/ -iname "*.ipa")" \
76+
--username $FASTLANE_USER \
77+
--password '@env:FASTLANE_APP_SPECIFIC_PASSWORD'

cordova/config.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version='1.0' encoding='utf-8'?>
22
<widget
33
id="com.eclipsesource.tabris.remote"
4-
version="3.17.0"
4+
version="3.17.1"
55
xmlns:android="http://schemas.android.com/apk/res/android"
66
android-versionCode="$BUILD_NUMBER"
77
ios-CFBundleVersion="$BUILD_NUMBER">

0 commit comments

Comments
 (0)