feat(setup-magento): add support for composer auth (#193)

This commit is contained in:
Damien Retzinger
2025-04-09 10:18:50 -04:00
committed by GitHub
parent 2f1b2eaa5d
commit 01cbea18c9
+6
View File
@@ -45,6 +45,10 @@ inputs:
default: "." default: "."
description: "The working directory to run the action in." description: "The working directory to run the action in."
composer_auth:
required: false
description: "Composer Authentication Credentials"
outputs: outputs:
path: path:
description: "The absolute path to where Magento was set up." description: "The absolute path to where Magento was set up."
@@ -83,6 +87,8 @@ runs:
shell: bash shell: bash
name: Create Magento ${{ inputs.magento_version }} Project name: Create Magento ${{ inputs.magento_version }} Project
if: inputs.mode == 'extension' if: inputs.mode == 'extension'
env:
COMPOSER_AUTH: ${{ inputs.composer_auth }}
- uses: graycoreio/github-actions-magento2/fix-magento-install@main - uses: graycoreio/github-actions-magento2/fix-magento-install@main
name: Fix Magento Out of Box Install Issues name: Fix Magento Out of Box Install Issues