From 05797700d91970997ebe66185ee6e61692d7493f Mon Sep 17 00:00:00 2001 From: cloudhead Date: Tue, 26 Mar 2024 15:35:37 +0100 Subject: [PATCH] ci: Make sure to fetch git tags --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 141e94972..94a24dff1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,6 +23,8 @@ jobs: steps: - name: Checkout source code uses: actions/checkout@v4 + - name: Get tags + run: git fetch --tags origin - name: Configure build cache uses: actions/cache@v4 with: @@ -59,6 +61,8 @@ jobs: - x86_64-apple-darwin steps: - uses: actions/checkout@v4 + - name: Get tags + run: git fetch --tags origin - name: Configure build cache uses: actions/cache@v4 with: