From 9b9704c4a2a2e7abc3f0d34611b40e9d9df05dad Mon Sep 17 00:00:00 2001 From: Kira Sokolova Date: Thu, 18 May 2023 16:35:44 +0300 Subject: [PATCH] fix(actions): hack around https://github.com/actions/checkout/issues/290 --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 980e063..50fdbd4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,6 +14,10 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Hack around https://github.com/actions/checkout/issues/290 + run: | + git fetch --tags --force + - name: get version run: echo "version=$(git describe --tags)" >> $GITHUB_ENV