Compare commits

...

8 Commits
main ... t

Author SHA1 Message Date
qxa 30cc8ffadc 1
编译项目 / 编译 (push) Failing after 9s Details
2024-04-12 11:18:06 +08:00
qxa a69deefd30 修改版本
编译项目 / 编译 (push) Failing after 8s Details
2024-04-12 11:17:26 +08:00
qxa e6fa594d5c 测试win编译
编译项目 / 编译 (push) Failing after 6s Details
2024-04-12 11:12:07 +08:00
qxa 1cd3b3f83d 修改flutter版本
编译项目 / 编译 (push) Failing after 2m29s Details
2024-04-11 17:56:50 +08:00
qxa a3f4606ac5 基础环境安装curl
编译项目 / 编译 (push) Failing after 33s Details
2024-04-11 17:49:28 +08:00
qxa 5f1f173677 基础环境安装git
编译项目 / 编译 (push) Failing after 1m30s Details
2024-04-11 17:44:10 +08:00
qxa dcc7aa87b5 测试发布
编译项目 / 编译 (push) Failing after 45s Details
2024-04-11 17:43:02 +08:00
qxa b320e93f02 测试打包
编译项目 / 编译 (push) Failing after 43s Details
2024-04-11 17:27:23 +08:00
1 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,42 @@
name: 编译项目
on:
push:
branches:
- t
paths-ignore:
- "**/*.md"
- "**/*.txt"
- "**/*.png"
- "**/*.jpg"
jobs:
job1:
name: 编译
runs-on: windows
defaults:
run:
shell: bash
steps:
- name: 下载源码
uses: actions/checkout@v3
- name: 安装java
uses: actions/setup-java@v2
with:
distribution: "zulu"
java-version: 11
- name: 安装flutter
uses: actions/setup-flutter@v2
with:
channel: stable
flutter-version: "3.1.2"
- name: 打包flutter
run: |
cd marking_app
flutter pub get
flutter build apk --release --target-platform=android-arm64 --no-tree-shake-icons