-
Notifications
You must be signed in to change notification settings - Fork 1
Feature : Opitimize WordLookupLayout thru searchWithTiers #78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
7076feb
c393cc6
0aeee4a
120c0e3
99ea4df
4fcb0ad
43af70e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 你删了原本的测试代码是过不了pr合并检查的。而且代码规范检查应该放另一个测试单元里,不适合和构建放一起
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 你原本那边的action不通过是因为你没有设置secret环境变量。我原本action构建apk中使用了自己的签名,而在你的仓库下没有相应的签名环境变量所以才会fail。 正确的解决方案是 你这样直接build的发布,每次签名都不同,会导致软件不能正常更新。 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,48 @@ | ||
| name: Build & Release Dev APK | ||
|
|
||
|
|
||
| on: | ||
| workflow_dispatch: | ||
|
|
||
| jobs: | ||
| build: | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - name: Checkout 代码 | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: 配置 Java 环境 | ||
| uses: actions/setup-java@v4 | ||
| with: | ||
| distribution: 'zulu' | ||
| java-version: '17' | ||
| - name: 配置 Flutter 环境 | ||
| uses: subosito/flutter-action@v2 | ||
| with: | ||
| flutter-version: '3.41.2' | ||
| channel: 'stable' | ||
| cache: true | ||
|
|
||
| - name: 安装依赖 | ||
| run: flutter pub get | ||
|
|
||
| - name: 代码分析 | ||
| run: flutter analyze --no-fatal-infos | ||
|
|
||
| - name: 构建 APK | ||
| run: flutter build apk --release | ||
|
|
||
| - name: 发布 GitHub Release | ||
| uses: softprops/action-gh-release@v2 | ||
| with: | ||
| tag_name: dev-${{ github.run_number }} | ||
| name: "Dev Build #${{ github.run_number }}" | ||
| body: | | ||
| 自动构建版本 | ||
| - 分支:${{ github.ref_name }} | ||
| - Commit:${{ github.sha }} | ||
| files: build/app/outputs/flutter-apk/app-release.apk | ||
| prerelease: true | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
何意味?