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

View File

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

View File

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

View File

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