修改构建版本 #20
This file contains 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
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
name: Build | |
on: | |
push: | |
jobs: | |
windows: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Setup Flutter | |
uses: flutter-actions/setup-flutter@v3 | |
with: | |
channel: 'stable' | |
version: 3.24.1 | |
cache-sdk: true | |
- name: Build | |
run: flutter build windows | |
- name: Upload Build Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Windows Artifact | |
path: build | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Setup Flutter | |
uses: flutter-actions/setup-flutter@v3 | |
with: | |
channel: 'stable' | |
version: 3.24.1 | |
cache-sdk: true | |
- name: Install Dependencies | |
run: |- | |
sudo apt update | |
sudo apt-get install clang cmake git ninja-build pkg-config libgtk-3-dev liblzma-dev libstdc++-12-dev patchelf locate libfuse2 | |
- name: Build | |
run: flutter build linux | |
- name: Upload Build Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Linux Artifact | |
path: build | |
android: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Setup Flutter | |
uses: flutter-actions/setup-flutter@v3 | |
with: | |
channel: 'stable' | |
version: 3.24.1 | |
cache-sdk: true | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
- name: Build | |
run: flutter build apk | |
- name: Upload Build Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Android Artifact | |
path: build | |
macos: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Setup Flutter | |
uses: flutter-actions/setup-flutter@v3 | |
with: | |
channel: 'stable' | |
version: 3.24.1 | |
cache-sdk: true | |
- name: Build | |
run: flutter build macos | |
- name: Upload Build Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: MacOS Artifact | |
path: build | |
## So, fku Apple and iOS | |
# ios: | |
# runs-on: macos-latest | |
# | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@v4 | |
# with: | |
# submodules: true | |
# - name: Setup Flutter | |
# uses: flutter-actions/setup-flutter@v3 | |
# with: | |
# channel: 'stable' | |
# version: 3.24.1 | |
# cache-sdk: true | |
# | |
# - name: Build | |
# run: flutter build ipa | |
# | |
# - name: Upload Build Artifact | |
# uses: actions/upload-artifact@v4 | |
# with: | |
# name: iOS Artifact | |
# path: build |