Skip to content

Commit 435a2f9

Browse files
committed
fix with tag fetching
1 parent a92e0c8 commit 435a2f9

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

.github/workflows/build-docs.yml

+3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@v3
2020

21+
- run: |
22+
git fetch --prune --unshallow --tags
23+
2124
- name: Set up Python
2225
uses: actions/setup-python@v4
2326
with:

.github/workflows/pypi-publish.yml

+3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v3
1717

18+
- run: |
19+
git fetch --prune --unshallow --tags
20+
1821
- name: Set up Python
1922
uses: actions/setup-python@v4
2023
with:

.github/workflows/run-tests.yml

+3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ jobs:
2626
steps:
2727
- uses: actions/checkout@v3
2828

29+
- run: |
30+
git fetch --prune --unshallow --tags
31+
2932
- name: Set up Python
3033
uses: actions/setup-python@v4
3134
with:

0 commit comments

Comments
 (0)