Skip to content

Commit

Permalink
bump version to 0.29.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SwenVanZanten committed Jul 3, 2021
1 parent cf281d6 commit e32f325
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 10 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: pod install
working-directory: ios
- name: Build with Xcode
- uses: yukiarrr/[email protected]
uses: yukiarrr/[email protected]
with:
project-path: ${{ github.workspace }}/ios/MultiCash.xcodeproj
workspace-path: ${{ github.workspace }}/ios/MultiCash.xcworkspace
Expand Down Expand Up @@ -58,11 +58,12 @@ jobs:
- name: Install iOS Cocoa Pods
run: pod install
working-directory: ios
- name: Build with Xcode
- uses: yukiarrr/[email protected]
- name: Build with Xcode and upload to AppStore Connect
uses: yukiarrr/[email protected]
with:
project-path: ${{ github.workspace }}/ios/MultiCash.xcodeproj
workspace-path: ${{ github.workspace }}/ios/MultiCash.xcworkspace
output-path: ${{ github.workspace }}/ios/app-release.ipa
p12-base64: ${{ secrets.IOS_P12_BASE64 }}
certificate-password: ${{ secrets.IOS_CERTIFICATE_PASSWORD }}
mobileprovision-base64: ${{ secrets.IOS_MOBILEPROVISION_BASE64 }}
Expand All @@ -71,3 +72,9 @@ jobs:
export-method: app-store
configuration: Release
scheme: MultiCash
- name: Upload Release to GitHub
uses: softprops/action-gh-release@v1
with:
files: ${{ github.workspace }}/ios/app-release.ipa
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ android {
applicationId "com.multicash"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 202105006
versionName "0.28.0"
versionCode 202105007
versionName "0.29.0"
multiDexEnabled true
missingDimensionStrategy 'react-native-camera', 'general'
}
Expand Down
8 changes: 4 additions & 4 deletions ios/MultiCash.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1039,8 +1039,8 @@
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
APP_BUILD = 20210500600;
APP_VERSION = 0.28.0;
APP_BUILD = 20210500700;
APP_VERSION = 0.29.0;
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
Expand Down Expand Up @@ -1102,8 +1102,8 @@
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
APP_BUILD = 20210500600;
APP_VERSION = 0.28.0;
APP_BUILD = 20210500700;
APP_VERSION = 0.29.0;
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "multicash",
"version": "0.28.0",
"version": "0.29.0",
"private": true,
"author": "MultiCash LLC",
"scripts": {
Expand Down

0 comments on commit e32f325

Please sign in to comment.