+
This commit is contained in:
parent
b10c3f3a22
commit
b975fb49fb
4 changed files with 19 additions and 15 deletions
25
.github/workflows/release.yml
vendored
25
.github/workflows/release.yml
vendored
|
|
@ -21,8 +21,9 @@ jobs:
|
|||
uses: actions/checkout@v3
|
||||
|
||||
- name: setup flutter
|
||||
uses: subosito/flutter-action@v2.12.0
|
||||
uses: subosito/flutter-action@v2
|
||||
with:
|
||||
flutter-version-file: pubspec.yaml
|
||||
channel: 'stable'
|
||||
|
||||
- name: Setup Rust toolchain
|
||||
|
|
@ -31,8 +32,8 @@ jobs:
|
|||
- name: Setup Java toolchain (Only Android target)
|
||||
uses: actions/setup-java@v3
|
||||
with:
|
||||
distribution: "zulu"
|
||||
java-version: "11"
|
||||
distribution: "temurin"
|
||||
java-version: "17"
|
||||
|
||||
- name: Install the CLI tool
|
||||
run: cargo install 'flutter_rust_bridge_codegen'
|
||||
|
|
@ -76,8 +77,9 @@ jobs:
|
|||
uses: actions/checkout@v3
|
||||
|
||||
- name: setup flutter
|
||||
uses: subosito/flutter-action@v2.12.0
|
||||
uses: subosito/flutter-action@v2
|
||||
with:
|
||||
flutter-version-file: pubspec.yaml
|
||||
channel: 'stable'
|
||||
|
||||
- name: Setup Rust toolchain
|
||||
|
|
@ -122,8 +124,9 @@ jobs:
|
|||
uses: actions/checkout@v3
|
||||
|
||||
- name: setup flutter
|
||||
uses: subosito/flutter-action@v2.12.0
|
||||
uses: subosito/flutter-action@v2
|
||||
with:
|
||||
flutter-version-file: pubspec.yaml
|
||||
channel: 'stable'
|
||||
|
||||
- name: Setup Rust toolchain
|
||||
|
|
@ -167,8 +170,9 @@ jobs:
|
|||
# uses: actions/checkout@v3
|
||||
|
||||
# - name: setup flutter
|
||||
# uses: subosito/flutter-action@v2.12.0
|
||||
# uses: subosito/flutter-action@v2
|
||||
# with:
|
||||
# flutter-version-file: pubspec.yaml
|
||||
# channel: 'stable'
|
||||
|
||||
# - name: Setup Rust toolchain
|
||||
|
|
@ -220,8 +224,9 @@ jobs:
|
|||
sudo apt-get install webkit2gtk-4.1 clang cmake ninja-build pkg-config libgtk-3-dev mpv libmpv-dev dpkg-dev
|
||||
|
||||
- name: setup flutter
|
||||
uses: subosito/flutter-action@v2.12.0
|
||||
uses: subosito/flutter-action@v2
|
||||
with:
|
||||
flutter-version-file: pubspec.yaml
|
||||
channel: 'stable'
|
||||
|
||||
- name: Setup Rust toolchain
|
||||
|
|
@ -269,8 +274,9 @@ jobs:
|
|||
sudo apt-get install webkit2gtk-4.1 clang cmake ninja-build pkg-config libgtk-3-dev mpv libmpv-dev dpkg-dev
|
||||
|
||||
- name: setup flutter
|
||||
uses: subosito/flutter-action@v2.12.0
|
||||
uses: subosito/flutter-action@v2
|
||||
with:
|
||||
flutter-version-file: pubspec.yaml
|
||||
channel: 'stable'
|
||||
|
||||
- name: Setup Rust toolchain
|
||||
|
|
@ -327,8 +333,9 @@ jobs:
|
|||
sudo apt-get install webkit2gtk-4.1 clang cmake ninja-build pkg-config libgtk-3-dev mpv libmpv-dev dpkg-dev
|
||||
|
||||
- name: setup flutter
|
||||
uses: subosito/flutter-action@v2.12.0
|
||||
uses: subosito/flutter-action@v2
|
||||
with:
|
||||
flutter-version-file: pubspec.yaml
|
||||
channel: 'stable'
|
||||
|
||||
- name: Setup Rust toolchain
|
||||
|
|
|
|||
6
.gitignore
vendored
6
.gitignore
vendored
|
|
@ -19,7 +19,7 @@ migrate_working_dir/
|
|||
# The .vscode folder contains launch configuration and tasks you configure in
|
||||
# VS Code which you may wish to be included in version control, so this line
|
||||
# is commented out by default.
|
||||
#.vscode/
|
||||
.vscode/
|
||||
|
||||
# Flutter/Dart/Pub related
|
||||
**/doc/api/
|
||||
|
|
@ -32,10 +32,6 @@ migrate_working_dir/
|
|||
.pub/
|
||||
/build/
|
||||
|
||||
# The .vscode folder contains launch configuration and tasks you configure in
|
||||
# VS Code which you may wish to be included in version control, so this line
|
||||
# is commented out by default.
|
||||
.vscode/
|
||||
|
||||
# Symbolication related
|
||||
app.*.symbols
|
||||
|
|
|
|||
|
|
@ -1750,4 +1750,4 @@ packages:
|
|||
version: "2.2.1"
|
||||
sdks:
|
||||
dart: ">=3.4.4 <4.0.0"
|
||||
flutter: ">=3.22.0"
|
||||
flutter: ">=3.22.3"
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@ version: 0.2.9+65
|
|||
|
||||
environment:
|
||||
sdk: ">=3.4.4 <4.0.0"
|
||||
flutter: 3.22.3
|
||||
|
||||
dependencies:
|
||||
flutter:
|
||||
|
|
|
|||
Loading…
Reference in a new issue