📎 Fix CI inputs

This commit is contained in:
Yamila Moreno
2025-08-27 10:42:13 +02:00
parent 1925e6782f
commit cbe538261c

View File

@@ -3,12 +3,27 @@ name: Build and Upload Penpot Bundle
on: on:
# Create bundle from manual action # Create bundle from manual action
workflow_dispatch: workflow_dispatch:
inputs:
gh_ref:
description: 'Name of the branch'
type: string
required: true
default: 'develop'
build_wasm:
type: boolean
required: false
default: true
build_storybook:
type: boolean
required: false
default: true
workflow_call: workflow_call:
inputs: inputs:
gh_ref: gh_ref:
description: 'Name of the branch' description: 'Name of the branch'
type: string type: string
required: true required: true
default: 'develop'
build_wasm: build_wasm:
type: boolean type: boolean
required: false required: false