From 71d486cda04b9c9fd5a65bfa3d86c98a5e012231 Mon Sep 17 00:00:00 2001 From: Elia Migliore Date: Thu, 28 Nov 2024 14:12:24 +0100 Subject: [PATCH] fix: remove the label for the workflow --- .github/workflows/container.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 0ed6475e2..33ec5f308 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -33,7 +33,7 @@ jobs: run: | echo is_release=${{ contains(github.ref, 'refs/tags/') }} | tee -a $GITHUB_OUTPUT echo is_dev=${{ ! contains(github.ref, 'refs/tags/') }} | tee -a $GITHUB_OUTPUT - echo version=$(git describe --always --tags) | tee -a $GITHUB_OUTPUT + echo version=$(git describe --tags | cut -d '-' -f -2 | sed 's/-/.dev/g') # QEMU is used to set up VMs for building non-x86_64 images. - name: Set up QEMU