Skip to content

Commit

Permalink
Fetch all tags, as required by setuptools-scm
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoddemus committed Oct 25, 2022
1 parent 1921931 commit f2633f1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ jobs:
python: "3.8"

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
# Needed to fetch tags, which are required by setuptools-scm.
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v2
with:
Expand All @@ -62,7 +65,10 @@ jobs:
needs: build

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
# Needed to fetch tags, which are required by setuptools-scm.
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v2
with:
Expand Down
1 change: 1 addition & 0 deletions changelog/830.trivial.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fixed failed deploy of ``3.0.0`` release.

0 comments on commit f2633f1

Please sign in to comment.