We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79aa2c8 commit 10b129eCopy full SHA for 10b129e
action.yml
@@ -21,9 +21,10 @@ runs:
21
run: which java
22
id: check_java
23
shell: bash
24
+ continue-on-error: true
25
26
- name: Install java
- if: ${{ !contains(steps.check_java.outputs, 'not found')}}
27
+ if: steps.check_java.outcome == 'failure'
28
uses: actions/setup-java@v3
29
with:
30
distribution: "zulu"
@@ -34,9 +35,10 @@ runs:
34
35
run: which flutter
36
id: check_flutter
37
38
39
40
- name: Setup flutter
- if: ${{ !contains(steps.check_flutter.outputs, 'not found')}}
41
+ if: steps.check_flutter.outcome == 'failure'
42
uses: subosito/flutter-action@v2
43
44
channel: "stable"
0 commit comments