We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 780b017 commit 89710dcCopy full SHA for 89710dc
1 file changed
.github/workflows/jfrog-publish.yml
@@ -18,13 +18,20 @@ jobs:
18
with:
19
fetch-depth: 0
20
21
+ - name: Install UV
22
+ uses: astral-sh/setup-uv@v7
23
+
24
+ - name: Get initial version from pyproject.toml
25
+ id: initial-version
26
+ run: echo "VERSION=$(uv version --short)" >> "$GITHUB_OUTPUT"
27
28
- name: Bump version and push tag
29
uses: anothrNick/github-tag-action@1.69.0
30
env:
31
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
32
WITH_V: true
33
DEFAULT_BUMP: patch
- INITIAL_VERSION: 0.11.0
34
+ INITIAL_VERSION: ${{ steps.initial-version.outputs.VERSION }}
35
36
- name: Get the latest tag
37
id: get-version
0 commit comments