From 593cfdfe089621a07dd7d9f03053edc61042ad17 Mon Sep 17 00:00:00 2001 From: Koji Wakamiya Date: Wed, 1 May 2024 23:18:03 +0900 Subject: [PATCH 1/2] fix: Fix conditional statements in workflow --- .github/workflows/workflow.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/workflow.yaml b/.github/workflows/workflow.yaml index 9f5f93c..31747e0 100644 --- a/.github/workflows/workflow.yaml +++ b/.github/workflows/workflow.yaml @@ -53,16 +53,16 @@ jobs: echo ARCHITECTURE=${{ steps.flutter-action.outputs.ARCHITECTURE }} shell: bash - run: dart --version - if: ${{ matrix.dry-run != 'true' }} + if: ${{ !matrix.dry-run }} shell: bash - run: flutter --version - if: ${{ matrix.dry-run != 'true' }} + if: ${{ !matrix.dry-run }} shell: bash - run: "! dart --version" - if: ${{ matrix.dry-run == 'true' }} + if: ${{ matrix.dry-run }} shell: bash - run: "! flutter --version" - if: ${{ matrix.dry-run == 'true' }} + if: ${{ matrix.dry-run }} shell: bash test_cache: @@ -108,7 +108,7 @@ jobs: shell: bash test_print_output: - runs-on: macos-latest + runs-on: macos-13 steps: - name: Clone repository From 5f04b2ce5a9e2e0e345dc0dc28b5ac8a8e939fde Mon Sep 17 00:00:00 2001 From: Koji Wakamiya Date: Thu, 2 May 2024 00:07:26 +0900 Subject: [PATCH 2/2] chore: Update operating system matrix --- .github/workflows/workflow.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/workflow.yaml b/.github/workflows/workflow.yaml index 31747e0..c966c73 100644 --- a/.github/workflows/workflow.yaml +++ b/.github/workflows/workflow.yaml @@ -26,7 +26,7 @@ jobs: strategy: matrix: operating-system: - [ubuntu-latest, windows-latest, macos-latest, macos-13, macos-14] + [ubuntu-latest, windows-latest, macos-latest, macos-13] channel: [stable, beta, master] dry-run: [true, false] include: @@ -71,7 +71,7 @@ jobs: strategy: matrix: operating-system: - [ubuntu-latest, windows-latest, macos-latest, macos-13, macos-14] + [ubuntu-latest, windows-latest, macos-latest, macos-13] steps: - name: Clone repository