Skip to content

Commit

Permalink
fix workflows.
Browse files Browse the repository at this point in the history
  • Loading branch information
hpoul committed Sep 4, 2023
1 parent 6baf4bf commit dd4ef41
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/dart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [push]
jobs:
test:

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v1
Expand Down Expand Up @@ -35,9 +35,9 @@ jobs:
fail-fast: false
matrix:
buildcommand: [linux]
os: [ubuntu-20.04]
os: [ubuntu-22.04]
exclude:
- os: ubuntu-20.04
- os: ubuntu-22.04
buildcommand: linux
include:
# No macos build for now, have to configure code signing..
Expand All @@ -61,10 +61,11 @@ jobs:
- uses: subosito/flutter-action@v2
with:
channel: 'stable' # or: 'dev' or 'beta'
- uses: actions/setup-java@v1
- uses: actions/setup-java@v3
if: matrix.buildcommand == 'appbundle'
with:
java-version: '12.x'
java-version: '17'
distribution: 'oracle'
- name: Patch for linux build
if: matrix.buildcommand == 'linux'
run: |
Expand Down

0 comments on commit dd4ef41

Please sign in to comment.