📎 Fix CI inputs

This commit is contained in:
Yamila Moreno 2025-08-27 11:13:13 +02:00
parent cbe538261c
commit 95faf340c4
4 changed files with 26 additions and 14 deletions

View File

@ -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:

View File

@ -10,5 +10,5 @@ jobs:
secrets: inherit
with:
gh_ref: "develop"
build_wasm: true
build_storybook: true
build_wasm: "yes"
build_storybook: "yes"

View File

@ -10,5 +10,5 @@ jobs:
secrets: inherit
with:
gh_ref: "staging"
build_wasm: true
build_storybook: true
build_wasm: "yes"
build_storybook: "yes"

View File

@ -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"