Skip to content

Commit

Permalink
fix: build action
Browse files Browse the repository at this point in the history
  • Loading branch information
lollipopkit committed May 25, 2024
1 parent 345270e commit 8e24549
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
uses: subosito/flutter-action@v2
- name: Fetch secrets
run: |
curl -u ${{ env.BASIC_AUTH }} -o android/app ${{ env.URL_PREFIX }}fjy.android.key
curl -u ${{ env.BASIC_AUTH }} -o android ${{ env.URL_PREFIX }}key.properties
curl -u ${{ secrets.BASIC_AUTH }} -o android/app/app.key ${{ secrets.URL_PREFIX }}app.key
curl -u ${{ secrets.BASIC_AUTH }} -o android/key.properties ${{ secrets.URL_PREFIX }}key.properties
- name: Build
run: dart run fl_build -p android,linux
- name: Create Release
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ app.*.map.json
/android/app/profile
/android/app/release

/android/app/fjy.androidstudio.key
/android/app/app.key
linux.AppDir
GPTBox-x86_64.AppImage

Expand Down
4 changes: 0 additions & 4 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,6 @@ android {
targetSdkVersion flutter.targetSdkVersion
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName

ndk {
abiFilters 'arm64-v8a'
}
}

signingConfigs {
Expand Down
6 changes: 3 additions & 3 deletions ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
CURRENT_PROJECT_VERSION = 158;
CURRENT_PROJECT_VERSION = 159;
DEVELOPMENT_TEAM = BA88US33G6;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Runner/Info.plist;
Expand Down Expand Up @@ -494,7 +494,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
CURRENT_PROJECT_VERSION = 158;
CURRENT_PROJECT_VERSION = 159;
DEVELOPMENT_TEAM = BA88US33G6;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Runner/Info.plist;
Expand All @@ -519,7 +519,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
CURRENT_PROJECT_VERSION = 158;
CURRENT_PROJECT_VERSION = 159;
DEVELOPMENT_TEAM = BA88US33G6;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Runner/Info.plist;
Expand Down
6 changes: 3 additions & 3 deletions lib/data/res/build.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

class Build {
static const String name = "GPTBox";
static const int build = 158;
static const int build = 159;
static const String engine = "3.22.1";
static const String buildAt = "2024-05-26 00:02:03";
static const int modifications = 7;
static const String buildAt = "2024-05-26 00:02:46";
static const int modifications = 1;
}

0 comments on commit 8e24549

Please sign in to comment.