mirror of https://github.com/penpot/penpot.git
📎 Fix CI inputs
This commit is contained in:
parent
cbe538261c
commit
95faf340c4
|
|
@ -10,13 +10,19 @@ on:
|
|||
required: true
|
||||
default: 'develop'
|
||||
build_wasm:
|
||||
type: boolean
|
||||
type: choice
|
||||
options:
|
||||
- yes
|
||||
- no
|
||||
required: false
|
||||
default: true
|
||||
default: 'yes'
|
||||
build_storybook:
|
||||
type: boolean
|
||||
type: choice
|
||||
options:
|
||||
- yes
|
||||
- no
|
||||
required: false
|
||||
default: true
|
||||
default: 'yes'
|
||||
workflow_call:
|
||||
inputs:
|
||||
gh_ref:
|
||||
|
|
@ -25,13 +31,19 @@ on:
|
|||
required: true
|
||||
default: 'develop'
|
||||
build_wasm:
|
||||
type: boolean
|
||||
type: choice
|
||||
options:
|
||||
- yes
|
||||
- no
|
||||
required: false
|
||||
default: true
|
||||
default: 'yes'
|
||||
build_storybook:
|
||||
type: boolean
|
||||
type: choice
|
||||
options:
|
||||
- yes
|
||||
- no
|
||||
required: false
|
||||
default: true
|
||||
default: 'yes'
|
||||
|
||||
jobs:
|
||||
build-bundle:
|
||||
|
|
|
|||
|
|
@ -10,5 +10,5 @@ jobs:
|
|||
secrets: inherit
|
||||
with:
|
||||
gh_ref: "develop"
|
||||
build_wasm: true
|
||||
build_storybook: true
|
||||
build_wasm: "yes"
|
||||
build_storybook: "yes"
|
||||
|
|
|
|||
|
|
@ -10,5 +10,5 @@ jobs:
|
|||
secrets: inherit
|
||||
with:
|
||||
gh_ref: "staging"
|
||||
build_wasm: true
|
||||
build_storybook: true
|
||||
build_wasm: "yes"
|
||||
build_storybook: "yes"
|
||||
|
|
|
|||
|
|
@ -11,5 +11,5 @@ jobs:
|
|||
secrets: inherit
|
||||
with:
|
||||
gh_ref: ${{ github.ref_name }}
|
||||
build_wasm: false
|
||||
build_storybook: true
|
||||
build_wasm: "no"
|
||||
build_storybook: "yes"
|
||||
|
|
|
|||
Loading…
Reference in New Issue