Skip to content

Commit 73c42d9

Browse files
committed
Correct continueOnError input for integration.yaml workflow
1 parent f06a093 commit 73c42d9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/integration.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ on:
5555
continueOnError:
5656
description: "whether to continue on error"
5757
required: false
58-
default: false
59-
type: boolean
58+
default: 'false'
59+
type: string
6060

6161
jobs:
6262
sdk-test-suite:
@@ -134,7 +134,7 @@ jobs:
134134
run: docker pull ${{ inputs.serviceImage }}
135135

136136
- name: Run test tool
137-
continue-on-error: ${{ inputs.continueOnError }}
137+
continue-on-error: ${{ inputs.continueOnError == 'true' }}
138138
uses: restatedev/sdk-test-suite@v3.2
139139
with:
140140
envVars: ${{ inputs.envVars }}

0 commit comments

Comments
 (0)