修复第三方按钮文字颜色设置无效问题 #11
This file contains hidden or 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
name: Build Release | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
# Release 操作 | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
discussions: write | |
steps: | |
# 拉取项目代码 | |
- uses: actions/checkout@v4 | |
# 建立 java 环境 | |
- name: Setup Java JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: '11' | |
# 建立 Flutter 环境 | |
- name: Flutter action | |
uses: subosito/flutter-action@main | |
with: | |
channel: "stable" | |
# 下载项目依赖 | |
- run: flutter pub get | |
# 执行测试 | |
- run: flutter test | |
# 打包 APK | |
- name: Build Release apk | |
run: flutter build apk --release | |
working-directory: example |