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:
parent
44ac965b96
commit
593cfdfe08
1 changed files with 5 additions and 5 deletions
10
.github/workflows/workflow.yaml
vendored
10
.github/workflows/workflow.yaml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue