Skip to content

Commit 6d4227e

Browse files
chore: fix workflows (#381)
* chore: fix workflows github actions... * try another * try
1 parent 117816f commit 6d4227e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/update-patches.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ jobs:
236236
instance_family: ${{ inputs.instance_family || github.event.inputs.instance_family || 'm8g.24xlarge' }}
237237
ref: ${{ needs.patch.outputs.branch_name }}
238238
tag: ${{ needs.patch.outputs.tag }}
239-
block_number: ${{ inputs.benchmark_block_number || github.event.inputs.benchmark_block_number || 21000000 }}
239+
block_number: ${{ fromJSON(inputs.benchmark_block_number || github.event.inputs.benchmark_block_number || '21000000') }}
240240
profiling: none
241241
secrets: inherit
242242

@@ -249,7 +249,7 @@ jobs:
249249
instance_family: ${{ inputs.instance_family || github.event.inputs.instance_family || 'm8g.24xlarge' }}
250250
ref: ${{ needs.patch.outputs.branch_name }}
251251
tag: ${{ needs.patch.outputs.tag }}
252-
block_number: ${{ inputs.benchmark_block_number || github.event.inputs.benchmark_block_number || 21000000 }}
252+
block_number: ${{ fromJSON(inputs.benchmark_block_number || github.event.inputs.benchmark_block_number || '21000000') }}
253253
profiling: host
254254
secrets: inherit
255255

@@ -262,7 +262,7 @@ jobs:
262262
instance_family: ${{ inputs.instance_family || github.event.inputs.instance_family || 'm8g.24xlarge' }}
263263
ref: ${{ needs.patch.outputs.branch_name }}
264264
tag: ${{ needs.patch.outputs.tag }}
265-
block_number: ${{ inputs.benchmark_block_number || github.event.inputs.benchmark_block_number || 21000000 }}
265+
block_number: ${{ fromJSON(inputs.benchmark_block_number || github.event.inputs.benchmark_block_number || '21000000') }}
266266
profiling: guest
267267
secrets: inherit
268268

0 commit comments

Comments
 (0)