Skip to content

Commit f2633f1

Browse files
committed
Fetch all tags, as required by setuptools-scm
1 parent 1921931 commit f2633f1

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.github/workflows/main.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@ jobs:
4040
python: "3.8"
4141

4242
steps:
43-
- uses: actions/checkout@v2
43+
- uses: actions/checkout@v3
44+
with:
45+
# Needed to fetch tags, which are required by setuptools-scm.
46+
fetch-depth: 0
4447
- name: Set up Python
4548
uses: actions/setup-python@v2
4649
with:
@@ -62,7 +65,10 @@ jobs:
6265
needs: build
6366

6467
steps:
65-
- uses: actions/checkout@v2
68+
- uses: actions/checkout@v3
69+
with:
70+
# Needed to fetch tags, which are required by setuptools-scm.
71+
fetch-depth: 0
6672
- name: Set up Python
6773
uses: actions/setup-python@v2
6874
with:

changelog/830.trivial.rst

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fixed failed deploy of ``3.0.0`` release.

0 commit comments

Comments
 (0)