Skip to content

Commit

Permalink
Fix actions
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixS90 committed Jun 7, 2024
1 parent 401d6fc commit 11350ce
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/actions/steps_psr/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,15 @@ inputs:
required: true
outputs:
# https://docs.github.com/en/actions/creating-actions/creating-a-composite-action
pypi_released: "${{ steps.pythonsemanticrelease.outputs.released }}"
pypi_version: "${{ steps.pythonsemanticrelease.outputs.version }}"
pypi_tag: "${{ steps.pythonsemanticrelease.outputs.tag }}"
pypi_released:
description: "PyPI Released"
value: ${{ steps.pythonsemanticrelease.outputs.released }}
pypi_version:
description: "PyPI Version"
value: ${{ steps.pythonsemanticrelease.outputs.version }}
pypi_tag:
description: "PyPI Tag"
value: ${{ steps.pythonsemanticrelease.outputs.tag }}
runs:
using: composite
steps:
Expand Down

0 comments on commit 11350ce

Please sign in to comment.