diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ebbcdc2..07145fc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,13 +13,16 @@ jobs: - uses: actions/checkout@v3 - uses: subosito/flutter-action@v2 with: - flutter-version: "3.16.7" + flutter-version: "3.16.8" channel: "stable" - run: | sudo apt-get update sudo apt-get install -y clang cmake ninja-build pkg-config libgtk-3-dev liblzma-dev + - uses: bluefireteam/melos-action@v2 - working-directory: ./packages/screen_retriever/example - run: flutter build linux --release + run: | + melos bs + flutter build linux --release build-macos: runs-on: macos-latest @@ -27,10 +30,13 @@ jobs: - uses: actions/checkout@v3 - uses: subosito/flutter-action@v2 with: - flutter-version: "3.16.7" + flutter-version: "3.16.8" channel: "stable" + - uses: bluefireteam/melos-action@v2 - working-directory: ./packages/screen_retriever/example - run: flutter build macos --release + run: | + melos bs + flutter build macos --release build-windows: runs-on: windows-latest @@ -38,7 +44,10 @@ jobs: - uses: actions/checkout@v3 - uses: subosito/flutter-action@v2 with: - flutter-version: "3.16.7" + flutter-version: "3.16.8" channel: "stable" + - uses: bluefireteam/melos-action@v2 - working-directory: ./packages/screen_retriever/example - run: flutter build windows --release + run: | + melos bs + flutter build windows --release diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 011a778..8d68ba7 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -13,7 +13,7 @@ jobs: - uses: actions/checkout@v3 - uses: subosito/flutter-action@v2 with: - flutter-version: "3.16.7" + flutter-version: "3.16.8" channel: "stable" - uses: bluefireteam/melos-action@v2 - run: melos run analyze @@ -24,7 +24,7 @@ jobs: - uses: actions/checkout@v3 - uses: subosito/flutter-action@v2 with: - flutter-version: "3.16.7" + flutter-version: "3.16.8" channel: "stable" cache: true - uses: bluefireteam/melos-action@v2 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 61d0e13..617f89a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,7 @@ jobs: - uses: actions/checkout@v3 - uses: subosito/flutter-action@v2 with: - flutter-version: "3.16.0" + flutter-version: "3.16.8" channel: "stable" cache: true - uses: bluefireteam/melos-action@v2