Skip to content

Commit

Permalink
chore: Update action.yaml outputs description and value formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
tmclaugh committed Sep 1, 2024
1 parent 61ef635 commit 886198b
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@ runs:
run: pipenv install --dev

outputs:
python-version: ${{ steps.install-python.outputs.python-version }}
python-path: ${{ steps.install-python.outputs.python-path }}
cache-hit: ${{ steps.install-python.outputs.cache-hit }}
python-version:
description: Python version
value: ${{ steps.install-python.outputs.python-version }}
python-path:
description: Python path
value: ${{ steps.install-python.outputs.python-path }}
cache-hit:
description: Cache hit
value: ${{ steps.install-python.outputs.cache-hit }}

0 comments on commit 886198b

Please sign in to comment.