Returns the version of the plugin from .tool-versions file managed by asdf.
-
Make sure
actions/checkout
action is used before this action. -
Add this action to your job in your workflow, here is an example:
#... jobs: something: name: Setup NodeJS runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 # checkout the repository first - uses: straw-hat-team/github-actions-workflows/asdf/git-version@master id: nodejs-version with: plugin-name: nodejs - shell: sh run: | echo ${{ steps.nodejs-version.outputs.plugin-version }}