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.
workflow_dispatch
1 parent e18637c commit dd22af6Copy full SHA for dd22af6
.github/workflows/publish.yml
@@ -4,6 +4,7 @@ on:
4
push:
5
tags:
6
- '*'
7
+ workflow_dispatch:
8
9
jobs:
10
build:
@@ -39,6 +40,7 @@ jobs:
39
40
pypi-publish:
41
runs-on: ubuntu-latest
42
needs: build
43
+ if: success() && startsWith(github.ref, 'refs/tags/')
44
45
permissions:
46
id-token: write
@@ -77,9 +79,11 @@ jobs:
77
79
git config user.name github-actions[bot]
78
80
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
81
- - uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
82
+ - name: Install uv
83
+ uses: astral-sh/setup-uv@557e51de59eb14aaaba2ed9621916900a91d50c6 # v6.6.1
84
with:
85
python-version: "3.12"
86
+ enable-cache: true
87
88
- name: Install dependencies
89
run: scripts/install
0 commit comments