Skip to content

Commit

Permalink
fix: Fix conditional statements in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
koji-1009 committed May 1, 2024
1 parent 44ac965 commit 593cfdf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
shell: bash

test_print_output:
runs-on: macos-latest
runs-on: macos-13

steps:
- name: Clone repository
Expand Down

0 comments on commit 593cfdf

Please sign in to comment.