mirror of
https://github.com/penpot/penpot.git
synced 2026-02-12 22:53:02 +00:00
📎 Fix CI inputs
This commit is contained in:
28
.github/workflows/build-bundle.yml
vendored
28
.github/workflows/build-bundle.yml
vendored
@@ -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:
|
||||
|
||||
4
.github/workflows/build-develop.yml
vendored
4
.github/workflows/build-develop.yml
vendored
@@ -10,5 +10,5 @@ jobs:
|
||||
secrets: inherit
|
||||
with:
|
||||
gh_ref: "develop"
|
||||
build_wasm: true
|
||||
build_storybook: true
|
||||
build_wasm: "yes"
|
||||
build_storybook: "yes"
|
||||
|
||||
4
.github/workflows/build-staging.yml
vendored
4
.github/workflows/build-staging.yml
vendored
@@ -10,5 +10,5 @@ jobs:
|
||||
secrets: inherit
|
||||
with:
|
||||
gh_ref: "staging"
|
||||
build_wasm: true
|
||||
build_storybook: true
|
||||
build_wasm: "yes"
|
||||
build_storybook: "yes"
|
||||
|
||||
4
.github/workflows/build-tag.yml
vendored
4
.github/workflows/build-tag.yml
vendored
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user