We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37ec234 commit 1c52b41Copy full SHA for 1c52b41
2 files changed
publish/action.yaml
@@ -19,6 +19,9 @@ outputs:
19
package-version:
20
description: 'Version number of the package'
21
value: ${{ steps.package-name.outputs.version }}
22
+ url:
23
+ description: 'URL of the package on pypi.org (or test.pypi.org)'
24
+ value: https://${{ inputs.test-only == 'true' && 'test.' || '' }}pypi.org/p/${{ steps.package-name.outputs.name }}
25
26
runs:
27
using: 'composite'
setup/action.yml
@@ -4,12 +4,12 @@ description: |-
4
Uses `uv` to install python and setup the project venv
5
Invoke with `uses: glenn20/python-ci/setup@v1`
6
author: glenn20
7
+
8
inputs:
9
python-version:
10
description: "Python version to install"
11
required: false
12
default: "3.12"
- type: string
13
14
15
0 commit comments