Skip to content

Commit

Permalink
Fix the try build
Browse files Browse the repository at this point in the history
  • Loading branch information
mrobinson committed Oct 28, 2023
1 parent 6dd3591 commit c282b9b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
inputs:
production:
required: false
default: false
type: boolean
wpt:
required: false
Expand All @@ -26,6 +27,7 @@ on:
inputs:
production:
required: false
default: false
type: boolean
wpt:
default: "test"
Expand Down Expand Up @@ -140,7 +142,7 @@ jobs:
needs: ["build"]
uses: ./.github/workflows/linux-wpt.yml
with:
production: ${{ inputs.production }}
production: ${{ inputs.production || false }}
wpt: ${{ inputs.wpt }}
layout: "layout-2020"

Expand All @@ -150,7 +152,7 @@ jobs:
needs: ["build"]
uses: ./.github/workflows/linux-wpt.yml
with:
production: ${{ inputs.production }}
production: ${{ inputs.production || false }}
wpt: ${{ inputs.wpt }}
layout: "layout-2013"

Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
inputs:
production:
required: false
default: false
type: boolean
wpt-layout:
required: false
Expand All @@ -24,6 +25,7 @@ on:
inputs:
production:
required: false
default: false
type: boolean
wpt-layout:
required: false
Expand Down Expand Up @@ -130,7 +132,7 @@ jobs:
needs: ["build"]
uses: ./.github/workflows/mac-wpt.yml
with:
production: ${{ inputs.production }}
production: ${{ inputs.production || false }}
layout: "layout-2020"

wpt-2013:
Expand All @@ -139,7 +141,7 @@ jobs:
needs: ["build"]
uses: ./.github/workflows/mac-wpt.yml
with:
production: ${{ inputs.production }}
production: ${{ inputs.production || false }}
layout: "layout-2013"

result:
Expand Down

0 comments on commit c282b9b

Please sign in to comment.