From b341c404a8e44ee8285e4fc27667eb8c61f7db37 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Fri, 20 Aug 2021 22:16:59 +0200 Subject: [PATCH] ci: fetch tags when doing a release Otherwise, changelog is empty. --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index abf60507..820d9706 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,6 +47,9 @@ jobs: - uses: actions/checkout@v2 with: submodules: true + - name: Fetch all tags + if: matrix.release + run: git fetch --tags - name: Install stuff run: ./tests/ci/install.sh - name: Build and run tests -- 2.39.5