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
|
required: true
|
||||||
default: 'develop'
|
default: 'develop'
|
||||||
build_wasm:
|
build_wasm:
|
||||||
type: boolean
|
type: choice
|
||||||
|
options:
|
||||||
|
- yes
|
||||||
|
- no
|
||||||
required: false
|
required: false
|
||||||
default: true
|
default: 'yes'
|
||||||
build_storybook:
|
build_storybook:
|
||||||
type: boolean
|
type: choice
|
||||||
|
options:
|
||||||
|
- yes
|
||||||
|
- no
|
||||||
required: false
|
required: false
|
||||||
default: true
|
default: 'yes'
|
||||||
workflow_call:
|
workflow_call:
|
||||||
inputs:
|
inputs:
|
||||||
gh_ref:
|
gh_ref:
|
||||||
|
|
@ -25,13 +31,19 @@ on:
|
||||||
required: true
|
required: true
|
||||||
default: 'develop'
|
default: 'develop'
|
||||||
build_wasm:
|
build_wasm:
|
||||||
type: boolean
|
type: choice
|
||||||
|
options:
|
||||||
|
- yes
|
||||||
|
- no
|
||||||
required: false
|
required: false
|
||||||
default: true
|
default: 'yes'
|
||||||
build_storybook:
|
build_storybook:
|
||||||
type: boolean
|
type: choice
|
||||||
|
options:
|
||||||
|
- yes
|
||||||
|
- no
|
||||||
required: false
|
required: false
|
||||||
default: true
|
default: 'yes'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-bundle:
|
build-bundle:
|
||||||
|
|
|
||||||
|
|
@ -10,5 +10,5 @@ jobs:
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
with:
|
with:
|
||||||
gh_ref: "develop"
|
gh_ref: "develop"
|
||||||
build_wasm: true
|
build_wasm: "yes"
|
||||||
build_storybook: true
|
build_storybook: "yes"
|
||||||
|
|
|
||||||
|
|
@ -10,5 +10,5 @@ jobs:
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
with:
|
with:
|
||||||
gh_ref: "staging"
|
gh_ref: "staging"
|
||||||
build_wasm: true
|
build_wasm: "yes"
|
||||||
build_storybook: true
|
build_storybook: "yes"
|
||||||
|
|
|
||||||
|
|
@ -11,5 +11,5 @@ jobs:
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
with:
|
with:
|
||||||
gh_ref: ${{ github.ref_name }}
|
gh_ref: ${{ github.ref_name }}
|
||||||
build_wasm: false
|
build_wasm: "no"
|
||||||
build_storybook: true
|
build_storybook: "yes"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue