From 152857aa62d00783afc3ce93761f01ad95f46228 Mon Sep 17 00:00:00 2001 From: Herve Tribouilloy Date: Fri, 8 May 2026 14:27:52 +0100 Subject: [PATCH] Add composer_auth support to setup-magento --- setup-magento/action.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/setup-magento/action.yml b/setup-magento/action.yml index 250b189..e84128d 100644 --- a/setup-magento/action.yml +++ b/setup-magento/action.yml @@ -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." @@ -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