Skip to content

Commit

Permalink
specify java version for android build
Browse files Browse the repository at this point in the history
  • Loading branch information
lukehmcc committed Jul 21, 2024
1 parent 2d2b771 commit 04135a3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build-on-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,20 @@ jobs:
name: "Build web, android, & linux"
runs-on: ubuntu-latest
steps:
# Set up repo and java
- name: Clone repository
uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
- name: Set up Java
uses: actions/setup-java@v2
with:
java-version: 17
distribution: "temurin"

# And begin the flutter
- name: Install dependencies
run: flutter pub get

Expand Down

0 comments on commit 04135a3

Please sign in to comment.