From f2633f1b372dbc58a221cd612c9cb4e79f59eea3 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Tue, 25 Oct 2022 08:58:30 -0300 Subject: [PATCH] Fetch all tags, as required by setuptools-scm --- .github/workflows/main.yml | 10 ++++++++-- changelog/830.trivial.rst | 1 + 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 changelog/830.trivial.rst diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7359cfe4..41e8200a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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: @@ -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: diff --git a/changelog/830.trivial.rst b/changelog/830.trivial.rst new file mode 100644 index 00000000..146d8a5c --- /dev/null +++ b/changelog/830.trivial.rst @@ -0,0 +1 @@ +Fixed failed deploy of ``3.0.0`` release.