mirror of
https://github.com/graycoreio/github-actions-magento2.git
synced 2026-06-08 19:46:41 +00:00
32 lines
833 B
YAML
32 lines
833 B
YAML
name: "Magento setup:install"
|
|
author: "Graycore"
|
|
description: "A GitHub Action that runs bin/magento setup:install, deriving service flags from the supported-version services matrix."
|
|
|
|
inputs:
|
|
services:
|
|
required: false
|
|
default: "null"
|
|
description: "JSON string of the services key from the supported-version matrix entry (toJSON(matrix.services))."
|
|
|
|
path:
|
|
required: false
|
|
default: "."
|
|
description: "Path to the Magento root directory. Accepts the output of the setup-magento action."
|
|
|
|
extra_args:
|
|
required: false
|
|
default: ""
|
|
description: "Additional raw flags to append to the setup:install command."
|
|
|
|
outputs:
|
|
command:
|
|
description: "The full bin/magento setup:install command that was run."
|
|
|
|
runs:
|
|
using: "node24"
|
|
main: "dist/index.js"
|
|
|
|
branding:
|
|
icon: "tool"
|
|
color: "orange"
|