-
-
Notifications
You must be signed in to change notification settings - Fork 326
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ee5f4d1
commit ccab404
Showing
12 changed files
with
138 additions
and
336 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
name: Flutter Release | ||
|
||
on: | ||
push: | ||
tags: | ||
- "v*" | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
releaseAL: | ||
name: Release android and linux | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Install Flutter | ||
uses: subosito/flutter-action@v2 | ||
- name: Build | ||
run: dart run fl_build -p android,linux | ||
- name: Create Release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
files: | | ||
build/app/outputs/flutter-apk/${{ env.APP_NAME }}_arm64.apk | ||
build/app/outputs/flutter-apk/${{ env.APP_NAME }}_arm.apk | ||
build/app/outputs/flutter-apk/${{ env.APP_NAME }}_amd64.apk | ||
${{ env.APP_NAME }}_amd64.AppImage | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# releaseWin: | ||
# name: Release windows | ||
# runs-on: windows-latest | ||
# steps: | ||
# - name: Checkout | ||
# uses: actions/checkout@v4 | ||
# - name: Install Flutter | ||
# uses: subosito/flutter-action@v2 | ||
# - name: Build | ||
# run: dart run fl_build -p windows | ||
# - name: Create Release | ||
# uses: softprops/action-gh-release@v1 | ||
# with: | ||
# files: | | ||
# ${{ env.APP_NAME }}_amd64_windows.zip | ||
# env: | ||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# releaseApple: | ||
# name: Release ios and macos | ||
# runs-on: macos-latest | ||
# steps: | ||
# - name: Checkout | ||
# uses: actions/checkout@v4 | ||
# - name: Install Flutter | ||
# uses: subosito/flutter-action@v2 | ||
# - name: Build | ||
# run: dart run fl_build -p ios,mac | ||
# - name: Create Release | ||
# uses: softprops/action-gh-release@v1 | ||
# with: | ||
# files: | | ||
# ${{ env.APP_NAME }}_universal_macos.zip | ||
# ${{ env.APP_NAME }}_universal.ipa | ||
# env: | ||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,3 +62,4 @@ ServerBox-x86_64.AppImage | |
untranlated.json | ||
|
||
.vscode/settings.json | ||
more_build_data.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
// This file is generated by ./make.dart | ||
// This file is generated by make script. Do not edit. | ||
|
||
class BuildData { | ||
static const String name = "ServerBox"; | ||
static const int build = 912; | ||
static const String engine = "3.22.0"; | ||
static const String buildAt = "2024-05-24 16:29:39"; | ||
static const int modifications = 3; | ||
static const int build = 918; | ||
static const String engine = "3.22.1"; | ||
static const String buildAt = "2024-05-25 19:17:18"; | ||
static const int modifications = 2; | ||
static const int script = 48; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,5 +72,6 @@ abstract final class GithubIds { | |
'pgs666', | ||
'FHU-yezi', | ||
'ZRY233', | ||
'Jasonzhu1207', | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.