RSSQlite #18
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: RSSQlite | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: Build Flutter APK | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 拉取 main 分支代码 | |
| uses: actions/checkout@v6 | |
| with: | |
| ref: main | |
| - name: 设置 Node.js 环境 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: 安装 npm 依赖 | |
| run: | | |
| cd android/app/src/main/assets/nodejs-project | |
| npm install | |
| - name: 设置 Flutter 环境 | |
| uses: subosito/flutter-action@v2 | |
| with: | |
| flutter-version: '3.44.1' | |
| - name: 获取依赖 | |
| run: flutter pub get | |
| - name: 构建 APK (按 ABI 分割) | |
| run: flutter build apk --release --split-per-abi --no-tree-shake-icons | |
| - name: 上传 arm64-v8a APK | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| path: build/app/outputs/flutter-apk/app-arm64-v8a-release.apk | |
| archive: false |