Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions setup-magento/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ inputs:
default: "."
description: "The working directory to run the action in."

composer_auth:
required: false
default: ""
description: "Composer authentication credentials (contents of auth.json as a JSON string)"

outputs:
path:
description: "The absolute path to where Magento was set up."
Expand Down Expand Up @@ -83,6 +88,8 @@ runs:
shell: bash
name: Create Magento ${{ inputs.magento_version }} Project
if: inputs.mode == 'extension'
env:
COMPOSER_AUTH: ${{ inputs.composer_auth }}

- uses: mage-os/github-actions/fix-magento-install@main
name: Fix Magento Out of Box Install Issues
Expand Down
Loading