From 01cbea18c9649984893afd432a1cdfa4568a5273 Mon Sep 17 00:00:00 2001 From: Damien Retzinger Date: Wed, 9 Apr 2025 10:18:50 -0400 Subject: [PATCH] feat(setup-magento): add support for composer auth (#193) --- setup-magento/action.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/setup-magento/action.yml b/setup-magento/action.yml index 89d8fd7..be13633 100644 --- a/setup-magento/action.yml +++ b/setup-magento/action.yml @@ -45,6 +45,10 @@ inputs: default: "." description: "The working directory to run the action in." + composer_auth: + required: false + description: "Composer Authentication Credentials" + outputs: path: description: "The absolute path to where Magento was set up." @@ -83,6 +87,8 @@ runs: shell: bash name: Create Magento ${{ inputs.magento_version }} Project if: inputs.mode == 'extension' + env: + COMPOSER_AUTH: ${{ inputs.composer_auth }} - uses: graycoreio/github-actions-magento2/fix-magento-install@main name: Fix Magento Out of Box Install Issues