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 ba44c67 commit 2f4092eCopy full SHA for 2f4092e
.github/workflows/release.yml
@@ -27,6 +27,8 @@ jobs:
27
with:
28
fetch-depth: 0
29
token: ${{ secrets.GITHUB_TOKEN }}
30
+ ref: ${{ github.event.release.tag_name || github.ref }}
31
+ fetch-tags: true
32
33
- name: Install uv
34
run: |
@@ -44,6 +46,15 @@ jobs:
44
46
source .venv/bin/activate
45
47
uv pip install ".[dev]"
48
49
+ - name: Debug Info
50
+ run: |
51
+ source .venv/bin/activate
52
+ git status
53
+ git branch
54
+ git tag
55
+ echo "Current ref: ${{ github.ref }}"
56
+ echo "Release tag: ${{ github.event.release.tag_name }}"
57
+
58
- name: Release
59
env:
60
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments