Skip to content

Commit

Permalink
feat: version 1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zhiqingchen committed Jul 12, 2023
1 parent 95df812 commit 927ecd9
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/assemble_android_debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ env:
# 打包类型
BUILD_TYPE: debug
# 版本名称
VERSION_NAME: 1.8.0
VERSION_NAME: 1.8.1
# 版本号
VERSION_CODE: 18000
VERSION_CODE: 18100
# 密钥库文件
KEYSTORE_FILE: debug.keystore
# 密钥库口令
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/assemble_android_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ env:
# 打包类型
BUILD_TYPE: release
# 版本名称
VERSION_NAME: 1.8.0
VERSION_NAME: 1.8.1
# 版本号
VERSION_CODE: 18000
VERSION_CODE: 18100
# 密钥库文件
KEYSTORE_FILE: release.keystore
# 密钥库口令
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/assemble_ios_debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:
# 应用的application_id
APP_ID: ${{secrets.APP_ID}}
APP_NAME: Taro
VERSION_NUMBER: 1.8.0
VERSION_NUMBER: 1.8.1
BUILD_TYPE: debug
TEAM_ID: ${{secrets.TEAM_ID}}
PROVISIONING_PROFILE_SPECIFIER: ${{secrets.DEBUG_PROVISIONING_PROFILE_SPECIFIER}}
Expand All @@ -26,7 +26,7 @@ env:

jobs:
assemble:
runs-on: macos-12
runs-on: macos-13
steps:
- name: Checkout Project
uses: actions/checkout@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/assemble_ios_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ env:
# 应用的application_id
APP_ID: ${{secrets.APP_ID}}
APP_NAME: Taro
VERSION_NUMBER: 1.8.0
BUILD_NUMBER: 1.8.0.1
VERSION_NUMBER: 1.8.1
BUILD_NUMBER: 1.8.1.1
BUILD_TYPE: release
TEAM_ID: ${{secrets.TEAM_ID}}
PROVISIONING_PROFILE_SPECIFIER: ${{secrets.RELEASE_PROVISIONING_PROFILE_SPECIFIER}}
Expand All @@ -29,7 +29,7 @@ env:

jobs:
assemble:
runs-on: macos-12
runs-on: macos-13
steps:
- name: Get current date
id: date
Expand Down
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ android {
applicationId app_id
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 18000
versionName "1.8.0"
versionCode 18100
versionName "1.8.1"
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()

if (isNewArchitectureEnabled()) {
Expand Down

0 comments on commit 927ecd9

Please sign in to comment.