From 4d57ec6e671490304f1d8b46afaf3ffd7c3a1f90 Mon Sep 17 00:00:00 2001 From: Stavros Ntentos <133706+stdedos@users.noreply.github.com> Date: Thu, 29 Feb 2024 17:14:57 +0200 Subject: [PATCH] `actions/checkout@v4`: with: `fetch-depth: 0` Signed-off-by: Stavros Ntentos <133706+stdedos@users.noreply.github.com> --- .github/workflows/publish-appimage.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-appimage.yml b/.github/workflows/publish-appimage.yml index f5d515bb..aa2be523 100644 --- a/.github/workflows/publish-appimage.yml +++ b/.github/workflows/publish-appimage.yml @@ -77,8 +77,8 @@ jobs: pip3 install --upgrade pyyaml - name: Checkout uses: actions/checkout@v4 - - name: Get tags - run: git fetch --tags origin + with: + fetch-depth: 0 - name: Get git version id: git-version run: echo "GIT_VERSION=$(git describe --tags --always --debug)" | tee -a $GITHUB_ENV