mirror of
https://github.com/penpot/penpot.git
synced 2026-06-01 05:00:17 +00:00
🔧 Run all the jobs if the workflow is launched manually
This commit is contained in:
parent
c5f03d711a
commit
d433fd25c1
16
.github/workflows/plugins-deploy-packages.yml
vendored
16
.github/workflows/plugins-deploy-packages.yml
vendored
@ -70,7 +70,7 @@ jobs:
|
|||||||
|
|
||||||
colors-to-tokens-plugin:
|
colors-to-tokens-plugin:
|
||||||
needs: detect-changes
|
needs: detect-changes
|
||||||
if: needs.detect-changes.outputs.colors_to_tokens == 'true'
|
if: github.event_name == 'workflow_dispatch' || needs.detect-changes.outputs.colors_to_tokens == 'true'
|
||||||
uses: ./.github/workflows/plugins-deploy-package.yml
|
uses: ./.github/workflows/plugins-deploy-package.yml
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
with:
|
with:
|
||||||
@ -79,7 +79,7 @@ jobs:
|
|||||||
|
|
||||||
contrast-plugin:
|
contrast-plugin:
|
||||||
needs: detect-changes
|
needs: detect-changes
|
||||||
if: needs.detect-changes.outputs.contrast == 'true'
|
if: github.event_name == 'workflow_dispatch' || needs.detect-changes.outputs.contrast == 'true'
|
||||||
uses: ./.github/workflows/plugins-deploy-package.yml
|
uses: ./.github/workflows/plugins-deploy-package.yml
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
with:
|
with:
|
||||||
@ -88,7 +88,7 @@ jobs:
|
|||||||
|
|
||||||
create-palette-plugin:
|
create-palette-plugin:
|
||||||
needs: detect-changes
|
needs: detect-changes
|
||||||
if: needs.detect-changes.outputs.create_palette == 'true'
|
if: github.event_name == 'workflow_dispatch' || needs.detect-changes.outputs.create_palette == 'true'
|
||||||
uses: ./.github/workflows/plugins-deploy-package.yml
|
uses: ./.github/workflows/plugins-deploy-package.yml
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
with:
|
with:
|
||||||
@ -97,7 +97,7 @@ jobs:
|
|||||||
|
|
||||||
icons-plugin:
|
icons-plugin:
|
||||||
needs: detect-changes
|
needs: detect-changes
|
||||||
if: needs.detect-changes.outputs.icons == 'true'
|
if: github.event_name == 'workflow_dispatch' || needs.detect-changes.outputs.icons == 'true'
|
||||||
uses: ./.github/workflows/plugins-deploy-package.yml
|
uses: ./.github/workflows/plugins-deploy-package.yml
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
with:
|
with:
|
||||||
@ -106,7 +106,7 @@ jobs:
|
|||||||
|
|
||||||
lorem-ipsum-plugin:
|
lorem-ipsum-plugin:
|
||||||
needs: detect-changes
|
needs: detect-changes
|
||||||
if: needs.detect-changes.outputs.lorem_ipsum == 'true'
|
if: github.event_name == 'workflow_dispatch' || needs.detect-changes.outputs.lorem_ipsum == 'true'
|
||||||
uses: ./.github/workflows/plugins-deploy-package.yml
|
uses: ./.github/workflows/plugins-deploy-package.yml
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
with:
|
with:
|
||||||
@ -115,7 +115,7 @@ jobs:
|
|||||||
|
|
||||||
rename-layers-plugin:
|
rename-layers-plugin:
|
||||||
needs: detect-changes
|
needs: detect-changes
|
||||||
if: needs.detect-changes.outputs.rename_layers == 'true'
|
if: github.event_name == 'workflow_dispatch' || needs.detect-changes.outputs.rename_layers == 'true'
|
||||||
uses: ./.github/workflows/plugins-deploy-package.yml
|
uses: ./.github/workflows/plugins-deploy-package.yml
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
with:
|
with:
|
||||||
@ -124,7 +124,7 @@ jobs:
|
|||||||
|
|
||||||
table-plugin:
|
table-plugin:
|
||||||
needs: detect-changes
|
needs: detect-changes
|
||||||
if: needs.detect-changes.outputs.table == 'true'
|
if: github.event_name == 'workflow_dispatch' || needs.detect-changes.outputs.table == 'true'
|
||||||
uses: ./.github/workflows/plugins-deploy-package.yml
|
uses: ./.github/workflows/plugins-deploy-package.yml
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
with:
|
with:
|
||||||
@ -135,7 +135,7 @@ jobs:
|
|||||||
# Add more jobs for other plugins below, following the same pattern
|
# Add more jobs for other plugins below, following the same pattern
|
||||||
# another-plugin:
|
# another-plugin:
|
||||||
# needs: detect-changes
|
# needs: detect-changes
|
||||||
# if: needs.detect-changes.outputs.another_plugin == 'true'
|
# if: github.event_name == 'workflow_dispatch' || needs.detect-changes.outputs.another_plugin == 'true'
|
||||||
# uses: ./.github/workflows/plugins-deploy-package.yml
|
# uses: ./.github/workflows/plugins-deploy-package.yml
|
||||||
# secrets: inherit
|
# secrets: inherit
|
||||||
# with:
|
# with:
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
name = "color-to-tokens-plugin"
|
name = "color-to-tokens-plugin"
|
||||||
compatibility_date = "2025-01-01"
|
compatibility_date = "2025-01-01"
|
||||||
|
|
||||||
assets = { directory = "../../dist/apps/color-to-tokens-plugin/browser" }
|
assets = { directory = "../../dist/apps/colors-to-tokens-plugin/browser" }
|
||||||
|
|
||||||
[[routes]]
|
[[routes]]
|
||||||
pattern = "WORKER_URI"
|
pattern = "WORKER_URI"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user