mirror of
https://github.com/graycoreio/github-actions-magento2.git
synced 2026-06-08 19:46:41 +00:00
32 lines
908 B
YAML
32 lines
908 B
YAML
name: "Get Magento Version"
|
|
author: "Graycore"
|
|
description: " A Github Action that determines the currently installed version of Magento"
|
|
|
|
inputs:
|
|
working-directory:
|
|
default: $GITHUB_WORKSPACE
|
|
description: "The current working directory of the action"
|
|
required: false
|
|
|
|
outputs:
|
|
version: # id of output
|
|
description: 'The determined version of Magento'
|
|
value: ${{ steps.get-magento-version.outputs.version }}
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- run: |
|
|
echo "version=$(cat composer.json | jq '.require
|
|
| with_entries( select(.key == "magento/product-community-edition" or .key == "magento/product-enterprise-edition") )
|
|
| to_entries
|
|
| .[0].value')" >> $GITHUB_OUTPUT
|
|
shell: bash
|
|
working-directory: ${{ inputs.working-directory }}
|
|
name: Compute Installed Magento version
|
|
id: get-magento-version
|
|
|
|
branding:
|
|
icon: "code"
|
|
color: "green"
|