Files
Homepage/logos/simple-icons.manual-backup-20251123-234134/.github/actions/get-version/action.yml

17 lines
395 B
YAML

name: Get version
description: Get the current version of the project
outputs:
version:
description: The version of the project
value: ${{ steps.get-version.outputs.version }}
runs:
using: composite
steps:
- id: get-version
shell: sh
run: |
version="$(grep version -m 1 -i package.json | cut -d '"' -f4)"
echo "version=$version" >> $GITHUB_OUTPUT