From 3fde61f2e51ca3653b86eaac6ca1f3f2bed3a2f2 Mon Sep 17 00:00:00 2001 From: Martin Robinson Date: Sun, 29 Oct 2023 17:35:58 +0100 Subject: [PATCH] Fix the try build (#30642) --- .github/workflows/linux.yml | 6 ++++-- .github/workflows/mac.yml | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 5d7003edfb3..fe869129883 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -4,6 +4,7 @@ on: inputs: production: required: false + default: false type: boolean wpt: required: false @@ -26,6 +27,7 @@ on: inputs: production: required: false + default: false type: boolean wpt: default: "test" @@ -140,7 +142,7 @@ jobs: needs: ["build"] uses: ./.github/workflows/linux-wpt.yml with: - production: ${{ inputs.production }} + production: ${{ inputs.production == 'true' }} wpt: ${{ inputs.wpt }} layout: "layout-2020" @@ -150,7 +152,7 @@ jobs: needs: ["build"] uses: ./.github/workflows/linux-wpt.yml with: - production: ${{ inputs.production }} + production: ${{ inputs.production == 'true' }} wpt: ${{ inputs.wpt }} layout: "layout-2013" diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index 6654b03b43a..6c21419a75e 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -5,6 +5,7 @@ on: inputs: production: required: false + default: false type: boolean wpt-layout: required: false @@ -24,6 +25,7 @@ on: inputs: production: required: false + default: false type: boolean wpt-layout: required: false @@ -130,7 +132,7 @@ jobs: needs: ["build"] uses: ./.github/workflows/mac-wpt.yml with: - production: ${{ inputs.production }} + production: ${{ inputs.production == 'true' }} layout: "layout-2020" wpt-2013: @@ -139,7 +141,7 @@ jobs: needs: ["build"] uses: ./.github/workflows/mac-wpt.yml with: - production: ${{ inputs.production }} + production: ${{ inputs.production == 'true' }} layout: "layout-2013" result: