We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5daf7d commit 9812cb2Copy full SHA for 9812cb2
.github/workflows/publish_to_pypi.yaml
@@ -4,6 +4,15 @@ on:
4
push:
5
tags:
6
- '**'
7
+ workflow_call:
8
+ workflow_dispatch:
9
+ inputs:
10
+ debug_enabled:
11
+ type: boolean
12
+ description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)'
13
+ required: false
14
+ default: false
15
+
16
env:
17
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN_PETDEFACE }}
18
@@ -31,4 +40,4 @@ jobs:
31
40
32
41
- name: Publish Package
33
42
run: |
34
- uv publish --token $PYPI_TOKEN_PETDEFACE
43
+ uv publish --token $PYPI_TOKEN_PETDEFACE
0 commit comments