-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
3 changed files
with
72 additions
and
1 deletion.
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,38 @@ | ||
name: Release Android Apk | ||
on: | ||
# 手动触发 | ||
workflow_dispatch: | ||
jobs: | ||
build: | ||
name: Build | ||
runs-on: windows-latest | ||
steps: | ||
# 使用本项目 | ||
- uses: actions/checkout@v3 | ||
# 设置jdk | ||
- uses: actions/setup-java@v3.13.0 | ||
with: | ||
distribution: 'zulu' | ||
# The Java version to set up. Takes a whole or semver Java version. See examples of supported syntax in README file | ||
java-version: 17 | ||
#设置flutter | ||
- uses: subosito/flutter-action@v2.12.0 | ||
with: | ||
# The Flutter version to make available on the path | ||
flutter-version: 3.13.9 | ||
# The Flutter build release channel | ||
channel: # optional, default is stable | ||
|
||
# Get flutter dependencies. | ||
- run: flutter pub get | ||
# Build apk.打包各架构版本 | ||
- run: flutter build apk --split-per-abi | ||
# Upload generated apk to the artifacts. | ||
- uses: actions/upload-artifact@v3.1.3 | ||
with: | ||
# Artifact name | ||
name: release-android | ||
# 导出文件夹 | ||
path: build/app/outputs/flutter-apk/ | ||
# The desired behavior if no files are found using the provided path. | ||
|
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,33 @@ | ||
name: Release IOS ipa | ||
on: | ||
# 手动触发 | ||
workflow_dispatch: | ||
jobs: | ||
build: | ||
name: Build | ||
runs-on: macos-latest | ||
steps: | ||
# 使用本项目 | ||
- uses: actions/checkout@v3 | ||
#设置flutter | ||
- uses: subosito/flutter-action@v2.12.0 | ||
with: | ||
# The Flutter version to make available on the path | ||
flutter-version: 3.13.9 | ||
# The Flutter build release channel | ||
channel: # optional, default is stable | ||
|
||
# Get flutter dependencies. | ||
- run: flutter pub get | ||
# TODO Build ios | ||
|
||
|
||
# Upload generated apk to the artifacts. | ||
- uses: actions/upload-artifact@v3.1.3 | ||
with: | ||
# Artifact name | ||
name: release-ios | ||
# 导出文件夹 | ||
path: ios/build/Runner.ipa | ||
# The desired behavior if no files are found using the provided path. | ||
|
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