Skip to content

Commit

Permalink
ci: install correct Rust toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
Tienisto committed Nov 7, 2024
1 parent aa54405 commit eef02aa
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/compile_apk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:

env:
FLUTTER_VERSION: "3.24.4"
RUST_VERSION: "1.82.0"
APK_BUILD_DIR: "/tmp/build"

jobs:
Expand Down Expand Up @@ -61,6 +62,12 @@ jobs:
with:
flutter-version: ${{ env.FLUTTER_VERSION }}

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: ${{ env.RUST_VERSION }}

- name: Dependencies
working-directory: ${{ env.APK_BUILD_DIR }}/app
run: flutter pub get
Expand Down

0 comments on commit eef02aa

Please sign in to comment.