diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index aa71cd1..8b93a1e 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -13,20 +13,13 @@ on: jobs: job1: name: 编译 - runs-on: linux + runs-on: windows - container: node:alpine + defaults: + run: + shell: bash steps: - - name: 安装基础配件 - run: | - sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories - apk update - apk add bash - apk add jq - apk add git - apk add curl - - name: 下载源码 uses: actions/checkout@v3 @@ -39,6 +32,7 @@ jobs: - name: 安装flutter uses: actions/setup-flutter@v2 with: + channel: stable flutter-version: "3.x" - name: 打包flutter