From 6ebb872ae5154cfebc36465e18657551ce3a796d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20R=C3=B6hrich?= Date: Mon, 20 Nov 2023 15:09:29 +0100 Subject: [PATCH] ci: fetch tags as well MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fetch tags as well to allow to determine the changed files since the last tag. Signed-off-by: Moritz Röhrich --- .github/workflows/release.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 7f2f78b..d6a55ba 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -11,6 +11,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 + with: + fetch-tags: true - name: Setup Python uses: actions/setup-python@v3