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 }}
|
echo ARCHITECTURE=${{ steps.flutter-action.outputs.ARCHITECTURE }}
|
||||||
shell: bash
|
shell: bash
|
||||||
- run: dart --version
|
- run: dart --version
|
||||||
if: ${{ matrix.dry-run != 'true' }}
|
if: ${{ !matrix.dry-run }}
|
||||||
shell: bash
|
shell: bash
|
||||||
- run: flutter --version
|
- run: flutter --version
|
||||||
if: ${{ matrix.dry-run != 'true' }}
|
if: ${{ !matrix.dry-run }}
|
||||||
shell: bash
|
shell: bash
|
||||||
- run: "! dart --version"
|
- run: "! dart --version"
|
||||||
if: ${{ matrix.dry-run == 'true' }}
|
if: ${{ matrix.dry-run }}
|
||||||
shell: bash
|
shell: bash
|
||||||
- run: "! flutter --version"
|
- run: "! flutter --version"
|
||||||
if: ${{ matrix.dry-run == 'true' }}
|
if: ${{ matrix.dry-run }}
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
test_cache:
|
test_cache:
|
||||||
|
@ -108,7 +108,7 @@ jobs:
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
test_print_output:
|
test_print_output:
|
||||||
runs-on: macos-latest
|
runs-on: macos-13
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Clone repository
|
- name: Clone repository
|
||||||
|
|
Loading…
Reference in a new issue