1
0
Fork 0
mirror of https://github.com/subosito/flutter-action.git synced 2024-08-16 10:19:50 +02:00

fix: Fix conditional statements in workflow

This commit is contained in:
Koji Wakamiya 2024-05-01 23:18:03 +09:00
parent 44ac965b96
commit 593cfdfe08
No known key found for this signature in database

View file

@ -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